Getting number of data points for training, validation and testing of neural network; showing the training and testing data of neural networks?
1 回表示 (過去 30 日間)
古いコメントを表示
I have analyzed the experiment data using DA, DD, SPEED, FEED as 'Input' and Thrust as 'target' by transposing the data given in Microsoft excel file using NNTOOL. I also have Included the related pictures regarding the network. Please tell me how to get number of data points for training, validation and testing of neural network;
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168120/image.jpeg)
<<
<<
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/168122/image.jpeg)
>>
>>
showing the training and testing data of neural networks?
0 件のコメント
採用された回答
Neil Guertin
2018 年 1 月 2 日
nntool is an older tool and is not recommended. Use nnstart instead. From there you can get to the Neural Fitting app which has options for setting training, validation, and testing percentages, and will walk you through the rest of the neural network creation process.
4 件のコメント
Greg Heath
2018 年 1 月 29 日
[ net tr y e ] = train(net,x,t);
% y=net(x); e = t-y;
% To find the trn/val/tst indices view the training record tr, via
tr = tr % No semicolon
Hope this helps
Thank you for formally accepting my answer
Greg
その他の回答 (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!