|
RandomForestLearningLearn Method (Int32, Int32, Double)
|
Learns a model that can map the given inputs to the given outputs.
Namespace:
Accord.MachineLearning.DecisionTrees
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public RandomForest Learn(
int[][] x,
int[] y,
double[] weights = null
)
Public Function Learn (
x As Integer()(),
y As Integer(),
Optional weights As Double() = Nothing
) As RandomForest
Request Example
View SourceParameters
- x
- Type: SystemInt32
The model inputs. - y
- Type: SystemInt32
The desired outputs associated with each x. - weights (Optional)
- Type: SystemDouble
The weight of importance for each input-output pair (if supported by the learning algorithm).
Return Value
Type:
RandomForestA model that has learned how to produce
y given
x.
See Also