Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

inputs
Type: SystemInt32
The inputs.
outputs
Type: SystemInt32
The corresponding outputs.

Return Value

Type: Double
The error of the generated tree.
See Also