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

1 回表示 (過去 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 Center および File ExchangeGPU Computing についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by