|
CrossValidationTModelGetPartitionSize Method
|
Gets the number of instances in training and validation
sets for the specified validation fold index.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public void GetPartitionSize(
int validationFoldIndex,
out int trainingCount,
out int validationCount
)
Public Sub GetPartitionSize (
validationFoldIndex As Integer,
<OutAttribute> ByRef trainingCount As Integer,
<OutAttribute> ByRef validationCount As Integer
)
Request Example
View SourceParameters
- validationFoldIndex
- Type: SystemInt32
The index of the validation fold. - trainingCount
- Type: SystemInt32
The number of instances in the training set. - validationCount
- Type: SystemInt32
The number of instances in the validation set.
See Also