|
ID3LearningRun Method
|
Note: This API is now obsolete.
Runs the learning algorithm, creating a decision
tree modeling the given inputs and outputs.
Namespace:
Accord.MachineLearning.DecisionTrees.Learning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use Learn(x, y) instead.")]
public double Run(
int[][] inputs,
int[] outputs
)
<ObsoleteAttribute("Please use Learn(x, y) instead.")>
Public Function Run (
inputs As Integer()(),
outputs As Integer()
) As Double
Request Example
View SourceParameters
- inputs
- Type: SystemInt32
The inputs. - outputs
- Type: SystemInt32
The corresponding outputs.
Return Value
Type:
DoubleThe error of the generated tree.
See Also