Hi again.
Running the following :
path_img = 'cassava-leaf-disease-classification/train_images/'
labels<-read_csv('cassava-leaf-disease-classification//train.csv')
head(labels)
dataloader <- fastai::ImageDataLoaders_from_df(df=labels, path=path_img, bs=8, seed=6,
num_workers=0,
item_tfms = Resize(448),
batch_tfms = aug_transforms(size=224, min_scale=0.75))
dataloader %>% show_batch()
learnR <- dataloader %>% cnn_learner(xresnet50(), metrics = accuracy, model_dir="fastai_model/") #prettier
learnR %>% plot_lr_find(dpi = 200)
I can knit and got a md document with the graphs. However, running the cells of the rmarkdown document will not output anything below the line Or inside the plots panels. (while it will happen with keras for example).
I do not know for sure if this is a local config problem, or a change introduced by the commit 8594699.
Hi again.
Running the following :
I can knit and got a md document with the graphs. However, running the cells of the rmarkdown document will not output anything below the line Or inside the plots panels. (while it will happen with keras for example).
I do not know for sure if this is a local config problem, or a change introduced by the commit 8594699.