|
DecisionRule Constructor (IListDecisionVariable, Double, IEnumerableAntecedent)
|
Namespace:
Accord.MachineLearning.DecisionTrees.Rules
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public DecisionRule(
IList<DecisionVariable> variables,
double output,
IEnumerable<Antecedent> antecedents
)
Public Sub New (
variables As IList(Of DecisionVariable),
output As Double,
antecedents As IEnumerable(Of Antecedent)
)
Request Example
View SourceParameters
- variables
- Type: System.Collections.GenericIListDecisionVariable
The decision variables handled by this decision rule. - output
- Type: SystemDouble
The output value, given after all antecedents are met. - antecedents
- Type: System.Collections.GenericIEnumerableAntecedent
The antecedent conditions that lead to the output.
See Also