필터 지우기
필터 지우기

How to print to command line train status (epoch, performance etc).

조회 수: 2 (최근 30일)
Tomas Koctur
Tomas Koctur 2017년 1월 16일
답변: Mibang 2023년 12월 22일
Hello,
I am running Matlab without GUI. I am trining narnet with large input data set and it takes days to train. I would like to see progress in a command line. Is there any way to get it?
Thanks
  댓글 수: 1
Andrik Rampun
Andrik Rampun 2019년 2월 21일
Hi Tomas,
I'm doing similar. Have you got the solution for this?
Please share it here
Thanks

댓글을 달려면 로그인하십시오.

답변 (1개)

Mibang
Mibang 2023년 12월 22일
Your can select the training option of "Verbose"' as "1" or "true".
For instance, your traiing option looks something like below:
options = trainingOptions('adam', ...
'MaxEpochs',200, ...
'MiniBatchSize',50, ...
'InitialLearnRate',0.01, ...
'LearnRateDropPeriod',3, ...
'LearnRateSchedule','piecewise', ...
'GradientThreshold',1, ... %'Plots','training-progress',...
'shuffle','every-epoch',...
'Verbose',1,...
'DispatchInBackground',true);

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by