|
HybridMarkovModelEvaluate Method
|
Calculates the probability that this model has generated the given sequence.
Namespace:
Accord.Statistics.Models.Markov.Hybrid
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public double Evaluate(
double[][] observations
)
Public Function Evaluate (
observations As Double()()
) As Double
Request Example
View SourceParameters
- observations
- Type: SystemDouble
A sequence of observations.
Return Value
Type:
Double
The probability that the given sequence has been generated by this model.
Remarks
Evaluation problem. Given the HMM M = (A, B, pi) and the observation
sequence O = {o1, o2, ..., oK}, calculate the probability that model
M has generated sequence O. This can be computed efficiently using the
Forward algorithm.
See Also