Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 776 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 776 Bytes

scyfer challenge

Run through the Theano Deep Learning example: http://deeplearning.net/tutorial/lenet.html#lenet

Add the following functionality to the example:

  • Adadelta learning rate update
  • Dropout
  • PreLU units

You have to implement this based on your own insight. Copying code from other places is not allowed. Run short experiments to see if the added functionalities add anything to the performance of the system.

Results

The experiments were performed in jupyter notebook and the results can be found here.

Code

The added functionalities are coded in the convolution_mlp.py file, I transformed the initial evaluate_lenet5() function into a python class for easier experimentation.