Beispiel #1
0
 /// <summary>
 ///   Creates a new instance of the Viterbi learning algorithm.
 /// </summary>
 ///
 public ViterbiLearning(HiddenMarkovModel <TDistribution> model)
 {
     this.mle = new MaximumLikelihoodLearning <TDistribution>(model);
 }
Beispiel #2
0
 /// <summary>
 ///   Creates a new instance of the Viterbi learning algorithm.
 /// </summary>
 ///
 public ViterbiLearning(HiddenMarkovModel model)
 {
     this.mle = new MaximumLikelihoodLearning(model);
 }