C# Класс Accord.MachineLearning.DecisionTrees.RandomForest

Наследование: MulticlassClassifierBase
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
Compute int

Открытые методы

Метод Описание
Decide ( double input ) : int

Computes a class-label decision for a given input.

RandomForest ( int trees, int classes ) : System

Creates a new random forest.

Приватные методы

Метод Описание
Compute ( double data ) : int

Описание методов

Decide() публичный Метод

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.
Результат int

RandomForest() публичный Метод

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.
Результат System