'ValidationData' is not a recognized parameter. For a list of valid name-value pair arguments, see the documentation for this function.
8 ビュー (過去 30 日間)
古いコメントを表示
Hi, Please help me to solve this problem.
I am trying to specify training options for CNN. In the moment of 'ValidationData' I am getting error. Traing options:
options = trainingOptions('sgdm', ...
'MaxEpochs',4, ...
'ValidationData',imdsValidation, ...
'ValidationFrequency',30, ...
'Verbose',false, ...
'Plots','training-progress');
Error:
Error using nnet.cnn.TrainingOptionsSGDM.parseInputArguments (line 176)
'ValidationData' is not a recognized parameter. For a list of valid name-value pair arguments, see the
documentation for this function.
Error in trainingOptions (line 144)
args = nnet.cnn.TrainingOptionsSGDM.parseInputArguments(varargin{:});
Error in CNN_mysample (line 59)
options = trainingOptions('sgdm', ...
In decription I found a note that says to "The validation data is not used to update the network weights. Turn on the training progress plot, and turn off the command window output." How can I turn off the command window output? Thank you all.
3 件のコメント
xiaowen ma
2020 年 4 月 29 日
Excuse me, can you tell me how to solve this problem now?I am using matlab 2019,
回答 (1 件)
Sean de Wolski
2018 年 7 月 23 日
It looks like it was added in 17b; release notes. If you're doing deep learning in MATLAB, it makes sense to upgrade if at all possible(!)
1 件のコメント
Oahidul Islam
2022 年 7 月 29 日
@Sean de Wolski sir can u please give me resources where i can learn deep learning using matlab ?
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!