Examples of lnProbability()


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

   * @return The log probability of that sequence
   */
  public double viterbiCalculate(ArrayList<String> seq) {
    ArrayList<ObservationInteger> oSeq = taxo.obSeqWithBoundarySymbols(seq);
    ViterbiCalculator vc = new ViterbiCalculator(oSeq, this);
    return vc.lnProbability();
  }

  /**
   * Computes the log probability of a sequence assuming that emission probabilities for different
   * states never overlap.
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.