Accord.Statistics.Models.Markov.Learning.BaseBaumWelchLearning.BaseBaumWelchLearning C# (CSharp) Method

BaseBaumWelchLearning() protected method

Initializes a new instance of the BaseBaumWelchLearning class.
protected BaseBaumWelchLearning ( IHiddenMarkovModel model ) : System
model IHiddenMarkovModel
return System
        protected BaseBaumWelchLearning(IHiddenMarkovModel model)
        {
            this.convergence = new AbsoluteConvergence();
            this.model = model;
        }