|
CrossValidationTModel, TInputCreateValidationSplits Method
|
Creates a list of the sample indices that should serve as the validation set.
Namespace:
Accord.MachineLearning.Performance
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax protected override int[] CreateValidationSplits(
TInput[] x,
int[] y,
int numberOfFolds
)
Protected Overrides Function CreateValidationSplits (
x As TInput(),
y As Integer(),
numberOfFolds As Integer
) As Integer()
Request Example
View SourceParameters
- x
- Type: TInput
The input data from where subsamples should be drawn. - y
- Type: SystemInt32
The output data from where subsamples should be drawn. - numberOfFolds
- Type: SystemInt32
The number of folds to be created.
Return Value
Type:
Int32The indices of the samples in the original set that should compose the validation set.
See Also