I need to know the data used for training, validation and test in neural network

1 view (last 30 days)
as I can extract the data that were used for training, validation and test, in a neural network ?
example, if you use 15 data I want to know which ones were used for each stage. please help me

Accepted Answer

Greg Heath
Greg Heath on 17 Oct 2015
[ net tr y e ] = train(net, x, t);
% y = net(x); e = t-y:
tr = tr % The training record will reveal the training information
Hope this helps.
Thank you for formally accepting my answer
Greg

More Answers (0)

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!