Martin Povolny

View on GitHub

Problem formulation:

Classify photos at a gate to a facility. Identify cars/trucks and front/back of cars.

Weekend one: Manual classification

Weekend two: Initial learning

enter image description here

Week three: Improvements

Should I consider some (systematic) hyperparameter search? Or just get more data?

Experiment with varying “decay” for Adam

To address oscilation in test set accuracy I tried to limit the learning rate by the learning decay parameter passed to the Adam optimizer.

Default setting: decay=0

Significant oscilation of the test set accuracy.

decay=0.01

The oscilation is limited, but the train accuracy dropped significantly. Test accuracy did not improve compared to the best values from the previous experiment.

decay=0.005

With this middle setting the oscilation was minimized and at the same time both train and test accuracy are slightly better.