divideint
Divide targets into three sets using interleaved indices
Syntax
[trainInd,valInd,testInd] = divideint(Q,trainRatio,valRatio,testRatio)
Description
[trainInd,valInd,testInd] = divideint(Q,trainRatio,valRatio,testRatio)
separates targets into three sets: training, validation, and testing. It takes the following
inputs,
Q | Number of targets to divide up. |
trainRatio | Ratio of vectors for training. Default = |
valRatio | Ratio of vectors for validation. Default =
|
testRatio | Ratio of vectors for testing. Default = |
and returns
trainInd | Training indices |
valInd | Validation indices |
testInd | Test indices |
Examples
[trainInd,valInd,testInd] = divideint(3000,0.6,0.2,0.2);
Network Use
Here are the network properties that define which data division function to use, what its
parameters are, and what aspects of targets are divided up, when train
is
called.
net.divideFcn net.divideParam net.divideMode
Version History
Introduced in R2008a