what is EPOCH in neural network

17 次查看(过去 30 天)
HI what is the definition of EPOCH. is it just an iteration. for each epoch, all the data sets go for training with assumed weights and biases.?? OR, does epoch has a size also, where after that size, the weights adgustments happen and runs again for other size.
Pl clarify me.
Thanks, Charu
  2 个评论
Shubhankar  Kapoor
So if we have more number of epoch the better result it is?
Alex Newman Veloso dos Santos
编辑:Alex Newman Veloso dos Santos 2016-12-28
There is not a straight forward answer to this.
Not necessarily. Clearly, if you have a small number of epochs in your training, it would be poor and you would realize the effects of underfitting. On the other hand, if you train the network too much, it would 'memorize' the desired outputs for the training inputs (supposing a supervised learning).
One could also use an optimization method to estimate weights prior to training and get excellent results with only two epochs.

请先登录,再进行评论。

采纳的回答

Greg Heath
Greg Heath 2013-2-9
编辑:Greg Heath 2013-2-10
An epoch is a measure of the number of times all of the training vectors are used once to update the weights.
For batch training all of the training samples pass through the learning algorithm simultaneously in one epoch before weights are updated.
help/doc trainlm
For sequential training all of the weights are updated after each training vector is sequentially passed through the training algorithm.
help/doc adapt
Hope this helps.
Thank you for formally accepting my answer
Greg
P.S. The comp.ai.neural-nets FAQ can very helpfull for understanding NN terminology and techniques.
Greg
  4 个评论
Ayomi
Ayomi 2018-8-12
I'm using the NN toolbox functions 'trainedNet = trainNetwork(X,Y,layers,options)' and 'options = trainingOptions(solverName)'. Options allow me to choose maximum number of Epoch and the size of the batch but nor the number of iterations per epoch as presented in https://ww2.mathworks.cn/help/nnet/ref/trainingoptions.html
Greg Heath
Greg Heath 2018-8-12
In general, training is a succession of "try then modify" steps. If unsure, start with defaults.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by