|
RandomForestLearningRun Method
|
Note: This API is now obsolete.
Runs the learning algorithm with the given data.
Namespace:
Accord.MachineLearning.DecisionTrees
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[] output
)
<ObsoleteAttribute("Please use the Learn(x, y) method instead.")>
Public Function Run (
inputs As Double()(),
output As Integer()
) As Double
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
The input points. - output
- Type: SystemInt32
The class label for each point.
Return Value
Type:
DoubleSee Also