|
SplitSetValidation< TModel, TInput, TOutput> . CreateValidationSplits 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
Syntaxprotected virtual int[] CreateValidationSplits(
TInput[] x,
TOutput[] y
)
Protected Overridable Function CreateValidationSplits (
x As TInput(),
y As TOutput()
) As Integer()
Request Example
View SourceParameters
- x
- Type:TInput[]
The input data from where subsamples should be drawn. - y
- Type:TOutput[]
The output data from where subsamples should be drawn.
Return Value
Type:
Int32[]The indices of the samples in the original set that should compose the validation set.
See Also