Examples of ForwardBackwardAlgorithmFactory


Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

    Counter counter = new SplitCounter();
    Calculator calculator =
      new PoissonDistributionCalculator(counter, alignmentList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    Filter filter = new Aligner(algorithm);
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

   
    Counter counter = new CharCounter();
    Calculator calculator = new NormalDistributionCalculator(counter);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    filterList.add(new Aligner(algorithm));
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

    
    Calculator calculator =
      new TranslationCalculator(bestAlignmentList);

    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);

    Filter filter = new Aligner(algorithm);
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

    Counter counter = new SplitCounter();
    Calculator calculator =
      new PoissonDistributionCalculator(counter, alignmentList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    filterList.add(new Aligner(algorithm));
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

    calculatorList.add(new TranslationCalculator(bestAlignmentList));

    Calculator calculator = new CompositeCalculator(calculatorList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);

    Filter filter = new Aligner(algorithm);
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

    Counter counter = new SplitCounter();
    Calculator calculator =
      new PoissonDistributionCalculator(counter, alignmentList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);
   
    Filter filter = new Aligner(algorithm)
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

    calculatorList.add(new TranslationCalculator(bestAlignmentList));

    Calculator calculator = new CompositeCalculator(calculatorList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
      new AdaptiveBandAlgorithm(algorithmFactory, calculator);

    Filter filter = new Aligner(algorithm);
View Full Code Here

Examples of net.sourceforge.align.filter.aligner.align.hmm.fb.ForwardBackwardAlgorithmFactory

            AdaptiveBandAlgorithm.DEFAULT_BAND_INCREMENT_RATIO);
        HmmAlignAlgorithmFactory algorithmFactory;
        if (cls.equals("viterbi")) {
          algorithmFactory = new ViterbiAlgorithmFactory();
        } else if (cls.equals("fb")) {
          algorithmFactory = new ForwardBackwardAlgorithmFactory();
        } else {
          throw new UnknownParameterException("class");
        }
        algorithm = new AdaptiveBandAlgorithm(algorithmFactory,
            calculator, radius, increment, margin,
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.