Click or drag to resize
Accord.NET (logo)

CrossValidationTModelFitting Property

Gets or sets the model fitting function.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public CrossValidationFittingFunction<TModel> Fitting { get; set; }
Request Example View Source

Property Value

Type: CrossValidationFittingFunctionTModel
Remarks
The fitting function should accept an array of integers containing the indexes for the training samples, an array of integers containing the indexes for the validation samples and should return information about the model fitted using those two subsets of the available data.
See Also