|
BaseViterbiLearningTRun Method
|
Runs the learning algorithm.
Namespace:
Accord.Statistics.Models.Markov.Learning
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public double Run(
params T[] observations
)
Public Function Run (
ParamArray observations As T()
) As Double
Request Example
View SourceParameters
- observations
- Type: T
Return Value
Type:
DoubleRemarks
Learning problem. Given some training observation sequences O = {o1, o2, ..., oK}
and general structure of HMM (numbers of hidden and visible states), determine
HMM parameters M = (A, B, pi) that best fit training data.
See Also