symbo
(Marvin Wang)
April 28, 2019, 2:58am
27
If encountering the same issue with colab as I did , please see below two posts
I was wondering: on which platforms does the widget work? I tried to use it in kaggle and floydhub… none of them is working. I want to try it
I am trying to run FileDeleter however it is telling me that ‘FileDeleter’ is not defined. I am using colab, attached is a screenshot of my notebook. I appreciate any help.
[Capture]
Thank you!!!
Zach
In short, colab does not support FileDeleter widget or the likes, such as ImageCleaner, and FileDeleter is removed in favor of two new widgets: ImageDeleter
and ImageRelabeler
.
And there is a work around below
This is kind of an annoying work-around if you have a low performance laptop running linux.
Install anaconda3, then install fastai. This should be enough to run the jupyter notebook locally.
Use amatic’s suggestion of mounting google drive (then set the path to ‘gdrive/fastai_data’ or something similar):
Run the notebook in colab up to the point where you want to run the cleaner.
Download the data and the notebook from google drive to your local machine.
Run the notebook locally until you h…