|
HiddenMarkovClassifierCreateGeneric2 Method
|
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 static HiddenMarkovClassifier<GeneralDiscreteDistribution, int> CreateGeneric2(
int classes,
int[] states,
int symbols
)
Public Shared Function CreateGeneric2 (
classes As Integer,
states As Integer(),
symbols As Integer
) As HiddenMarkovClassifier(Of GeneralDiscreteDistribution, Integer)
Request Example
View SourceParameters
- 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. - symbols
- Type: SystemInt32
The number of symbols in the models' discrete alphabet.
Return Value
Type:
HiddenMarkovClassifierGeneralDiscreteDistribution,
Int32See Also