CSVLogger: CSVLogger

View source: R/callbacks.R

CSVLoggerR Documentation

CSVLogger

Description

Basic class handling tweaks of the training loop by changing a 'Learner' in various events

Usage

CSVLogger(fname = "history.csv", append = FALSE)

Arguments

fname

file name

append

append or not

Value

None

Examples


## Not run: 

URLs_MNIST_SAMPLE()
# transformations
tfms = aug_transforms(do_flip = FALSE)
path = 'mnist_sample'
bs = 20

#load into memory
data = ImageDataLoaders_from_folder(path, batch_tfms = tfms, size = 26, bs = bs)


learn = cnn_learner(data, resnet18(), metrics = accuracy, path = getwd())

learn %>% fit_one_cycle(2, cbs = CSVLogger())


## End(Not run)


fastai documentation built on March 31, 2023, 11:41 p.m.