|
HiddenMarkovClassifierLearningCreate Method
|
Creates an instance of the model to be learned. Inheritors of this abstract
class must define this method so new models can be created from the training data.
Namespace:
Accord.Statistics.Models.Markov.Learning
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax protected override HiddenMarkovClassifier Create(
int[][] x,
int[] y,
int numberOfClasses
)
Protected Overrides Function Create (
x As Integer()(),
y As Integer(),
numberOfClasses As Integer
) As HiddenMarkovClassifier
Request Example
View SourceParameters
- x
- Type: SystemInt32
- y
- Type: SystemInt32
- numberOfClasses
- Type: SystemInt32
Return Value
Type:
HiddenMarkovClassifierSee Also