Problem in IMDB Dataset

There seems to be some issue in the IMDB dataset, when running the lesson 3-imdb notebook, when I try to use path = untar_data(URLs.IMDB) I don’t get a train folder at all.
What I instead get is :
[PosixPath(’/root/.fastai/data/imdb/tmp_clas’),
PosixPath(’/root/.fastai/data/imdb/test’),
PosixPath(’/root/.fastai/data/imdb/README’),
PosixPath(’/root/.fastai/data/imdb/unsup’)]

Is there some problem with the dataset or did I do something wrong?
P.S. I even tried to update fastai with !pip3 install --upgrade fastai

The problem doesn’t lie in fastai but in your local folder, I think. Remove ‘/root/.fastai/data/imdb’ then try again.

1 Like

Thanks,
I am using colab so I updated the files using
!curl -s https://course.fast.ai/setup/colab | bash
This does seem to work
:+1: :+1: