C# Class Accord.MachineLearning.DecisionTrees.RandomForest

Inheritance: MulticlassClassifierBase
ファイルを表示 Open project: accord-net/framework Class Usage Examples

Private Properties

Property Type Description
Compute int

Public Methods

Method Description
Decide ( double input ) : int

Computes a class-label decision for a given input.

RandomForest ( int trees, int classes ) : System

Creates a new random forest.

Private Methods

Method Description
Compute ( double data ) : int

Method Details

Decide() public method

Computes a class-label decision for a given input.
public Decide ( double input ) : int
input double The input vector that should be classified into /// one of the possible classes.
return int

RandomForest() public method

Creates a new random forest.
public RandomForest ( int trees, int classes ) : System
trees int The number of trees in the forest.
classes int The number of classes in the classification problem.
return System