Java org.apache.mahout.classifier.sequencelearning.hmm HmmModel fields, constructors, methods, implement or subclass

Example usage for Java org.apache.mahout.classifier.sequencelearning.hmm HmmModel fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.mahout.classifier.sequencelearning.hmm HmmModel.

The text is from its open source code.

Constructor

HmmModel(int nrOfHiddenStates, int nrOfOutputStates)
Construct a valid random Hidden-Markov parameter set with the given number of hidden and output states.
HmmModel(int nrOfHiddenStates, int nrOfOutputStates, long seed)
Construct a valid random Hidden-Markov parameter set with the given number of hidden and output states using a given seed.
HmmModel(Matrix transitionMatrix, Matrix emissionMatrix, Vector initialProbabilities)
Generates a Hidden Markov model using the specified parameters