Click or drag to resize
Accord.NET (logo)

AdaBoostTModelRun Method (Double, Int32, Double)

Note: This API is now obsolete.

Runs the learning algorithm.

Namespace:  Accord.MachineLearning.Boosting
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please use the Learn(x, y) method instead.")]
public double Run(
	double[][] inputs,
	int[] outputs,
	double[] sampleWeights
)
Request Example View Source

Parameters

inputs
Type: SystemDouble
The input samples.
outputs
Type: SystemInt32
The corresponding output labels.
sampleWeights
Type: SystemDouble
The weights for each of the samples.

Return Value

Type: Double
The classifier error.
See Also