Lesson 1 discussion

Hi team,

Just got started with FastAI and getting addicted pretty quickly :slight_smile:

Iā€™m doing the homework assignment, and Iā€™m getting scores for the Kaggle competition above 15 (not good). Iā€™ve spent some time debugging this. At first, I realized that the ids in the file were incorrect due to how get_batches iterates through the directory of test images, but even after correcting for that, Iā€™m still in the 15s.

As I dug around, I noticed that there were lots of 1.0 probabilities in my results file. I thought to myself ā€œthat doesnā€™t make sense ā€“ the chances of getting a 1.0 on the validation data should be low, let alone on the test dataā€

But sure enough, when I run a prediction on a small set of both the test data and the validation data, I get tons of 1.0 probabilities.

So my questions is twofold:

  1. Am I correct that 1.0 probabilities shouldnā€™t show up here?
  2. If I am correct on #1, has anyone ran into this before and could they point me in the right direction?

Thanks!

1 Like

That last code sample screenshot was a little messed up so hereā€™s a better screenshot of the code broken out w/ less data printed but sill those 1s.

Jeremy mentioned in one of the lessons that the classifier net used for that example tends to produce overconfident results. One way to avoid it is to increase the temperature of the softmax (if you were using one) (cf.https://www.cs.toronto.edu/~hinton/absps/distillation.pdf ). But more easily, just np.clip() the probabilities between 0.05 and 0.95. The crossentropy loss function hits you hard if you are maximally confident but you happen to get the prediction wrong.

3 Likes

Error when running get_batches on test images

Iā€™m running into errors when trying to run get_batches on my test directory containing unlabeled dog and cat images. Iā€™m working on step 11 of the homework for lesson 1. The structure of /test1 is simple: it doesnā€™t contain any subdirectories and only contains the set of unlabeled images.

Looking at the error messages, it seems like the error is occurring image.pyc in the flow_index method which has the function signature:

_flow_index(self, N, batch_size, shuffle, seed)

Iā€™m having a hard time seeing why N is getting the value 0. Has anyone else run into this problem?

Edit: this issue doesnā€™t happen for /train which does have two subdirectoriesā€¦my suspicion is that the issue has to do with directory structure, but Iā€™m not sure.

Hi @poppin3000,

I think your suspicion is on the mark - try putting the unlabeled images into an additional subdirectory within your test directory.

1 Like

Hi,
This was a time ago but if I am not wrong, you need add the full path to the image name. You can check in this link Questions regarding lesson1

Thanks JRicon! I had a similar issue with installing unzip and your command did the trick.

That worked! Thank you!

1 Like

Hi,
I am using Azure VM and trying lesson 1 notebook

Python snippet below initially runs forever and echos some C++ code. Seems to be compiling something.

import utils; reload(utils)
from utils import plots

https://i.imgur.com/vBqG9U8.png

After a while with no feedback, I stopped the kernel and run it again and then it gives a different error


AttributeError Traceback (most recent call last)
in ()
----> 1 import utils; reload(utils)
2 from utils import plots

/home/yousry/nbs/utils.py in ()
26 from IPython.lib.display import FileLink
27
ā€”> 28 import theano
29 from theano import shared, tensor as T
30 from theano.tensor.nnet import conv2d, nnet

/home/yousry/anaconda2/lib/python2.7/site-packages/theano/init.pyc in ()
98 # needed during that phase.
99 import theano.tests
ā€“> 100 if hasattr(theano.tests, ā€œTheanoNoseTesterā€):
101 test = theano.tests.TheanoNoseTester().test
102 else:

AttributeError: ā€˜moduleā€™ object has no attribute ā€˜testsā€™

I tried to update Theano to latest version [0.9.0rc4] but still got the same error

2 Likes

So my problem was due to using Ubuntu 16.1 instead of Ubuntu 16.04

Also the shell script for adding Theano config was missing the below which seems to be critical to make it use GPU
Those two lines are found in the AWS setup script

[cuda]
root = /usr/local/cuda

Anyway, this passed the above errors but it seems the Keras copy installed has some problem as shown below


ImportError Traceback (most recent call last)
in ()
----> 1 import utils; reload(utils)
2 from utils import plots

/home/yousry/courses/deeplearning1/nbs/utils.py in ()
40 from keras.layers import TimeDistributed, Activation, SimpleRNN, GRU
41 from keras.layers.core import Flatten, Dense, Dropout, Lambda
ā€”> 42 from keras.regularizers import l2, activity_l2, l1, activity_l1
43 from keras.layers.normalization import BatchNormalization
44 from keras.optimizers import SGD, RMSprop, Adam

ImportError: cannot import name activity_l2

Will see what I can do but help is really appreciated

2 Likes

Fixed : Keras 2.x seems to have some breaking changes

Solution is to install Keras 1.2.2 which is last version before 2.x as below

pip install keras==1.2.2

2 Likes

So, despite changing the backend in the keras.json file to point to theano, I get the following error

ValueError: Negative dimension size caused by subtracting 2 from 1 for 'max_pooling2d_12/MaxPool' (op: 'MaxPool') with input shapes: [?,1,112,128].

while running the code in cell 36

I installed keras 1.2.2, and I am using Python3.5 on Windows 10

1 Like

Hi @sl2902 ,
I am also using Windows 10 but I use Python 2.7 and lesson 1 works fine.

Hi Peter,
i get the same error, did you manage to resolve it?

Thanks,
Tom

hi! I have troubles running lesson1 notebook ā€¦

When it tries to initialize Vgg16 it came back with an error, it says requires h5py (when it tries to load the weights) I downloaded the model properly and install h5py also.

Do you have any suggestions?

Thanks in advance,

Balint

@bejczib, See this comment in another thread


Use the new vgg16.py script from github and also remove the cache for any previously saved models.

Thank you very much for that, Jose! I want to add some color here so anyone else seeing similar scores can learn from my mistakes. While itā€™s true that bounding probabilities does improve performance, my problem was a typo. Notice in my screenshot above how none of the probabilities were close to 0? Well that should have been my first clue. I had simply typoā€™d my python code that took the output from vgg.predict.

With the typo, my score was 15.41851. With the typo fixed, my score dropped to 0.20384. Using Joseā€™s clipping technique, I got all the way down to 0.10064!

Thanks again!

While training in the jupyter notebook, getting invalid unicode characters rendering as boxes in the end, after the accuracy values etc Should I set some encoding in environment variables?

I am running this course in local machine GTX 970 , 8GB RAM, Manjaro Linux

Would setting this up in docker be any better? Anyone using Docker?

I took a little pain setting it up correctly, would love to make it replicable.

In Arch + docker, combine with steps provided in install_gpu.sh (in git repo of the course) :

$pacaur -S nvidia-docker

If you are using bumblebee, load nvidia module (without primusrun or optirun)

$modprobe nvidia
$git clone https://github.com/fastai/courses/tree/master/deeplearning1/nbs
$nvidia-docker run -ti -v /path/to/gitclone/nbs:/nbs nvidia/cuda /bin/bash

In container, (following install_gpu.sh) apt-get update, install anaconda, set PATH, install cunn (CUDA comes with the container image), install/configure keras/theano, configure jupyter without password.

1 Like