Ask for help, my training-progress can 't show, can anyone help solve it ?

4 ビュー (過去 30 日間)
ao
ao 2024 年 8 月 14 日
コメント済み: ao 2024 年 8 月 21 日
options = trainingOptions('adam', ... % Adam 梯度下降算法
'MaxEpochs', 500, ... % 最大训练次数 500
'InitialLearnRate', 1e-3, ... % 初始学习率为 0.001
'L2Regularization', 1e-4, ... % L2正则化参数
'LearnRateSchedule', 'piecewise', ... % 学习率下降
'LearnRateDropFactor', 0.1, ... % 学习率下降因子 0.1
'LearnRateDropPeriod', 400, ... % 经过450次训练后 学习率为 0.001 * 0.1
'Shuffle', 'every-epoch', ... % 每次训练打乱数据集
'ValidationPatience', Inf, ... % 关闭验证
'Plots', 'training-progress', ... % 画出曲线
'Verbose', false);
  7 件のコメント
Jaimin
Jaimin 2024 年 8 月 14 日
@ao I have tried the following command on MATLAB R2023b on Windows OS, and it worked for me. Could you please let me know which OS or system you are using for model training?.
openExample('nnet/PlotAccuracyDuringTrainingExample')
ao
ao 2024 年 8 月 15 日
@Jaimin Windows 10 22H2

サインインしてコメントする。

回答 (2 件)

Cris LaPierre
Cris LaPierre 2024 年 8 月 14 日
編集済み: Cris LaPierre 2024 年 8 月 14 日
If it worked before, please try restarting MATLAB. If it still doesn't work, try restarting your computer.
If it still does not display correctly, please contact support: https://www.mathworks.com/support/contact_us.html

SITI ZAINAB
SITI ZAINAB 2024 年 8 月 20 日
Hi, I face a similar problem and I am using Matlab 2024a. I wonder if the root cause is the system itself?!
  2 件のコメント
SITI ZAINAB
SITI ZAINAB 2024 年 8 月 20 日
I found another alternative; [net,info]=trainnet(XTrain,YTrain,net,”mse”,options); info; show(info);
Thats it.
ao
ao 2024 年 8 月 21 日
Hi, thank you very much for your good idea.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

製品


リリース

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by