|
SimplificationCompute Method
|
Computes the reduction algorithm.
Namespace:
Accord.MachineLearning.DecisionTrees.Rules
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public double Compute(
double[][] inputs,
int[] outputs
)
Public Function Compute (
inputs As Double()(),
outputs As Integer()
) As Double
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
A set of training inputs. - outputs
- Type: SystemInt32
The outputs corresponding to each of the inputs.
Return Value
Type:
DoubleThe average error after the reduction.
See Also