Intro to Deep Learning
Neural Networks See Machine Learning How do you decide how many neurons to use per layer? One way is to start with all layers uing the same amount of neurons and continue adding them until they start overfitting the data Dropout: Regularlization technique to avoid overfitting. Leaves out data to better deal with general cases. 20%-50% dropout is a good starting range. Momentum: Helps finding the direction of next descent and prevent oscillations....