|
DecisionTreeToExpression Method
|
Creates an Expression Tree representation
of this decision tree, which can in turn be compiled into code.
Namespace:
Accord.MachineLearning.DecisionTrees
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public Expression<Func<double[], int>> ToExpression()
Public Function ToExpression As Expression(Of Func(Of Double(), Integer))
Request Example
View SourceReturn Value
Type:
ExpressionFuncDouble,
Int32A tree in the form of an expression tree.
See Also