Clear Filters
Clear Filters

How can I determine mean, standard deviation, minimum and maximum value of each type input and output in training, testing and validation data set, If i consider divide it randomly?

2 views (last 30 days)
How can I determine mean, standard deviation, minimum and maximum value of each type input and output in training, testing and validation data set, If i consider Dividerand?

Accepted Answer

Greg Heath
Greg Heath on 12 May 2017
Edited: Greg Heath on 12 May 2017
[ net tr y e ] = train(net,x,t);
Obtain trnind, valind and tstind from tr. To see how to do this, just
type, without the ending semicolon,
tr = tr
Hope this helps,
Greg
Thank you for formally accepting my answer
Greg
  5 Comments
Greg Heath
Greg Heath on 1 Jun 2017
Reread my instructions:
The trn/val/tst indices are in the training record tr. Therefore, use the command
tr = tr
and the rest will follow!
Greg
grytan sarkar
grytan sarkar on 1 Jun 2017
Thank you I got it. However how can I determine the standard deviation of inputs or outputs? std(tainInd) doest not work. Please suggest.

Sign in to comment.

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!