Click or drag to resize
Accord.NET (logo)

GridSearchFittingFunctionTModel Delegate

Delegate for grid search fitting functions.

Namespace:  Accord.MachineLearning
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public delegate TModel GridSearchFittingFunction<TModel>(
	GridSearchParameterCollection parameters,
	out double error
)

Parameters

parameters
Type: Accord.MachineLearningGridSearchParameterCollection
The collection of parameters to be used in the fitting process.
error
Type: SystemDouble
The error (or any other performance measure) returned by the model.

Type Parameters

TModel
The type of the model to fit.

Return Value

Type: TModel
The model fitted to the data using the given parameters.
See Also