|
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
)
<ObsoleteAttribute("Please use the Learn(x, y) method instead.")>
Public Function Run (
inputs As Double()(),
outputs As Integer(),
sampleWeights As Double()
) As Double
Request Example
View SourceParameters
- 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:
DoubleThe classifier error.
See Also