C# Class Accord.Statistics.Models.Markov.Hybrid.HybridMarkovClassifier

Show file Open project: accord-net/framework

Public Methods

Method Description
Compute ( double sequence ) : int

Computes the most likely class for a given sequence.

Compute ( double sequence, double &response ) : int

Computes the most likely class for a given sequence.

HybridMarkovClassifier ( IEnumerable models ) : System

Creates a new Sequence Classifier with the given number of classes.

Method Details

Compute() public method

Computes the most likely class for a given sequence.
public Compute ( double sequence ) : int
sequence double The sequence of observations.
return int

Compute() public method

Computes the most likely class for a given sequence.
public Compute ( double sequence, double &response ) : int
sequence double The sequence of observations.
response double The probability of the assigned class.
return int

HybridMarkovClassifier() public method

Creates a new Sequence Classifier with the given number of classes.
public HybridMarkovClassifier ( IEnumerable models ) : System
models IEnumerable /// The models specializing in each of the classes of /// the classification problem.
return System