Borrar filtros
Borrar filtros

When training a network with "trainNetwork", how to keep the trainable parameters from the begining to the end?

2 visualizaciones (últimos 30 días)
I want to see the 'sgdm' or 'adam' trace on the loss surface, the network at each iteration is needed? how can I keep the network at each iteration when training?

Respuestas (1)

yanqi liu
yanqi liu el 27 de Dic. de 2021
yes,sir,may be set options to train,such as
options = trainingOptions('sgdm', ...
'MaxEpochs',20,...
'InitialLearnRate',1e-4, ...
'Verbose',false, ...
'Plots','training-progress');
[tnet,tinfo] = trainNetwork(imdsTrain,layers,options);
after train,we can get the train information in tinfo struct

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by