Click or drag to resize
Accord.NET (logo)

CrossValidationTModel, TLearner, TInput, TOutputCreateValidationSplits 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 virtual int[] CreateValidationSplits(
	TInput[] x,
	TOutput[] y,
	int numberOfFolds
)
Request Example View Source

Parameters

x
Type: TInput
The input data from where subsamples should be drawn.
y
Type: TOutput
The output data from where subsamples should be drawn.
numberOfFolds
Type: SystemInt32
The number of folds to be created.

Return Value

Type: Int32
The indices of the samples in the original set that should compose the validation set.
See Also