Package net.sourceforge.align.calculator.content

Examples of net.sourceforge.align.calculator.content.TranslationCalculator


    } else {
      translationModel = TranslationModelUtil.train(
          iterations, sourceWidList, targetWidList);
    }

    calculator = new TranslationCalculator(sourceVocabulary,
          targetVocabulary, sourceLanguageModel, targetLanguageModel,
          translationModel, VocabularyUtil.DEFAULT_TOKENIZE_ALGORITHM);
   
    return calculator;
  }
View Full Code Here


   */
  private List<Alignment> contentAlign(List<Alignment> alignmentList,
      List<Alignment> bestAlignmentList) {
    
    Calculator calculator =
      new TranslationCalculator(bestAlignmentList);

    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
   
    AlignAlgorithm algorithm =
View Full Code Here

    List<Calculator> calculatorList = new ArrayList<Calculator>();
   
    Counter counter = new SplitCounter();
    calculatorList.add(new PoissonDistributionCalculator(counter, alignmentList));
   
    calculatorList.add(new TranslationCalculator(bestAlignmentList));

    Calculator calculator = new CompositeCalculator(calculatorList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
View Full Code Here

    List<Calculator> calculatorList = new ArrayList<Calculator>();
   
    Counter counter = new SplitCounter();
    calculatorList.add(new PoissonDistributionCalculator(counter, alignmentList));
   
    calculatorList.add(new TranslationCalculator(bestAlignmentList));

    Calculator calculator = new CompositeCalculator(calculatorList);
   
    HmmAlignAlgorithmFactory algorithmFactory =
      new ForwardBackwardAlgorithmFactory();
View Full Code Here

TOP

Related Classes of net.sourceforge.align.calculator.content.TranslationCalculator

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.