|
ViterbiLearningRunEpoch Method
|
Runs one single epoch (iteration) of the learning algorithm.
Namespace:
Accord.Statistics.Models.Markov.Learning
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax protected override void RunEpoch(
int[][] inputs,
int[][] outputs
)
Protected Overrides Sub RunEpoch (
inputs As Integer()(),
outputs As Integer()()
)
Request Example
View SourceParameters
- inputs
- Type: SystemInt32
The observation sequences. - outputs
- Type: SystemInt32
A vector to be populated with the decoded Viterbi sequences.
See Also