NameError: name 'os' is not defined

SOLUTION**:

I feel quiet silly. Turns out that I had to create a new data file and unzip the data from dogscats.zip and move it into the data file.

Here’s the code I wrote into my prompt:

$ wget http://files.fast.ai/data/dogscats.zip
$ unzip dogscats.zip
$ mkdir data
$ mv dogscats data

Got this from @isaacguerreiro in this post:

Hope this helps anyone who comes across this problem!

2 Likes