traingdx
Gradient descent with momentum and adaptive learning rate backpropagation
Description
net.trainFcn = 'traingdx'
sets the network
trainFcn
property.
[
trains the network with trainedNet
,tr
] = train(net
,...)traingdx
.
traingdx
is a network training function that updates weight and bias
values according to gradient descent momentum and an adaptive learning rate.
Training occurs according to traingdx
training parameters, shown here
with their default values:
net.trainParam.epochs
— Maximum number of epochs to train. The default value is 1000.net.trainParam.goal
— Performance goal. The default value is 0.net.trainParam.lr
— Learning rate. The default value is 0.01.net.trainParam.lr_inc
— Ratio to increase learning rate. The default value is 1.05.net.trainParam.lr_dec
— Ratio to decrease learning rate. The default value is 0.7.net.trainParam.max_fail
— Maximum validation failures. The default value is6
.net.trainParam.max_perf_inc
— Maximum performance increase. The default value is1.04
.net.trainParam.mc
— Momentum constant. The default value is0.9
.net.trainParam.min_grad
— Minimum performance gradient. The default value is1e-5
.net.trainParam.show
— Epochs between displays (NaN
for no displays). The default value is 25.net.trainParam.showCommandLine
— Generate command-line output. The default value isfalse
.net.trainParam.showWindow
— Show training GUI. The default value istrue
.net.trainParam.time
— Maximum time to train in seconds. The default value isinf
.
Input Arguments
Output Arguments
More About
Algorithms
The function traingdx
combines adaptive learning rate with momentum
training. It is invoked in the same way as traingda
, except that it has the
momentum coefficient mc
as an additional training parameter.
traingdx
can train any network as long as its weight, net input, and
transfer functions have derivative functions.
Backpropagation is used to calculate derivatives of performance perf
with respect to the weight and bias variables X
. Each variable is adjusted
according to gradient descent with momentum,
dX = mc*dXprev + lr*mc*dperf/dX
where dXprev
is the previous change to the weight or bias.
For each epoch, if performance decreases toward the goal, then the learning rate is
increased by the factor lr_inc
. If performance increases by more than the
factor max_perf_inc
, the learning rate is adjusted by the factor
lr_dec
and the change that increased the performance is not made.
Training stops when any of these conditions occurs:
The maximum number of
epochs
(repetitions) is reached.The maximum amount of
time
is exceeded.Performance is minimized to the
goal
.The performance gradient falls below
min_grad
.Validation performance (validation error) has increased more than
max_fail
times since the last time it decreased (when using validation).
Version History
Introduced before R2006a