필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
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?

답변 (1개)

yanqi liu
yanqi liu 2021년 12월 27일
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

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by