コード例 #1
0
ファイル: ViterbiLearning`1.cs プロジェクト: EnergonV/BestCS
 /// <summary>
 ///   Creates a new instance of the Viterbi learning algorithm.
 /// </summary>
 ///
 public ViterbiLearning(HiddenMarkovModel <TDistribution> model)
 {
     this.mle = new MaximumLikelihoodLearning <TDistribution>(model);
 }
コード例 #2
0
ファイル: ViterbiLearning.cs プロジェクト: EnergonV/BestCS
 /// <summary>
 ///   Creates a new instance of the Viterbi learning algorithm.
 /// </summary>
 ///
 public ViterbiLearning(HiddenMarkovModel model)
 {
     this.mle = new MaximumLikelihoodLearning(model);
 }