Package net.sourceforge.align.filter.aligner.align.hmm.viterbi

Examples of net.sourceforge.align.filter.aligner.align.hmm.viterbi.ViterbiAlgorithm


          matrixFactory = new BandMatrixFactory(radius);
        } else {
          throw new UnknownParameterException("search");
        }
        if (cls.equals("viterbi")) {
          algorithm = new ViterbiAlgorithm(calculator,
              categoryMap, matrixFactory);
        } else if (cls.equals("fb")) {
          algorithm = new ForwardBackwardAlgorithm(calculator,
              categoryMap, matrixFactory);
        } else {
View Full Code Here

TOP

Related Classes of net.sourceforge.align.filter.aligner.align.hmm.viterbi.ViterbiAlgorithm

Copyright © 2018 www.massapicom. 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.