Click or drag to resize
Accord.NET (logo)

DecisionTreeToAssembly Method (String, String)

Creates a .NET assembly (.dll) containing a static class of the given name implementing the decision tree. The class will contain a single static Compute method implementing the tree.

Namespace:  Accord.MachineLearning.DecisionTrees
Assembly:  Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax
public void ToAssembly(
	string assemblyName,
	string className
)
Request Example View Source

Parameters

assemblyName
Type: SystemString
The name of the assembly to generate.
className
Type: SystemString
The name of the generated static class.
See Also