Click or drag to resize
Accord.NET (logo)

HiddenMarkovClassifierTDistribution Constructor (Int32, Int32, TDistribution)

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

Namespace:  Accord.Statistics.Models.Markov
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public HiddenMarkovClassifier(
	int classes,
	int[] states,
	TDistribution initial
)
Request Example View Source

Parameters

classes
Type: SystemInt32
The number of classes in the classifier.
states
Type: SystemInt32
An array specifying the number of hidden states for each of the classifiers. By default, and Ergodic topology will be used.
initial
Type: TDistribution
The initial probability distributions for the hidden states. For multivariate continuous density distributions, such as Normal mixtures, the choice of initial values is crucial for a good performance.
See Also