Divide targets into three sets using blocks of indices
[trainInd,valInd,testInd] = divideblock(Q,trainRatio,valRatio,testRatio)
[trainInd,valInd,testInd] = divideblock(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 targets for training. Default = |
valRatio | Ratio of targets for validation. Default =
|
testRatio | Ratio of targets for testing. Default = |
and returns
trainInd | Training indices |
valInd | Validation indices |
testInd | Test indices |
[trainInd,valInd,testInd] = divideblock(3000,0.6,0.2,0.2);
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