Training a Neuron
Batch Training
This is possible when all the data is already available.
Training is done using batches of the data.
Each time the weights are updated, compute gradient for the entire dataset.
One pass through the dataset constitutes an epoch.
On-Line Training
Train using one example at a time. Update the weights only based on that example.
This is more efficient than batch training.
Stochastic Training
The idea is to train in an on-line fashion.
Last updated
Was this helpful?