Package be.ac.ulg.montefiore.run.jahmm

Examples of be.ac.ulg.montefiore.run.jahmm.ViterbiCalculator.stateSequence()


   * @param seq The sequence of symbols being evaluated
   * @return The most likely sequence of states to produce that sequence
   */
  public State[] viterbiPath(ArrayList<String> seq) {
    ViterbiCalculator vc = new ViterbiCalculator(taxo.obSeqWithBoundarySymbols(seq), this);
    int[] stateSequence = vc.stateSequence();
    State[] ms = new State[stateSequence.length];
    for (int i = 0; i < stateSequence.length; i++) {
      ms[i] = taxo.getState(stateSequence[i]);
    }
    return ms;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.