I have trained my neural network now I want to test it .I have left some some data only for testing it is not used in train .how I could test my model using untrained data
2 ビュー (過去 30 日間)
古いコメントを表示
ghulam murtaza
2022 年 6 月 20 日
回答済み: Ayush Kumar Jaiswal
2022 年 6 月 20 日
I am training Schottky diode .I have two input voltage and temperature and output is current .I am using only one hidden layer with 10 neurons .I have trained my model in MATLAB .least MSE is obtained .I have left some data for testing .now I want to test my model using that untrained data .how I could test it in Matlab ? Any command ? Please help
0 件のコメント
採用された回答
Ayush Kumar Jaiswal
2022 年 6 月 20 日
You can use
yfit = predict(Mdl,X);
Where Mdl is your trained neural network, and X will be your test datasets.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File 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!