Package joshua.discriminative.training.learning_algorithm

Examples of joshua.discriminative.training.learning_algorithm.DefaultEM


    String outGrammarPrefix=args[2].trim();   
    int maxNumIter = new Integer(args[3].trim());
   
    double relativeLikelihoodThreshold = 1e-5;
    int maxConvergeNum = 10000;
    DefaultEM p_trainer= new StructuredLMEM(maxNumIter, relativeLikelihoodThreshold, maxConvergeNum, f_joshua_config, f_dev_src, outGrammarPrefix);
    p_trainer.runEM();
 
View Full Code Here

TOP

Related Classes of joshua.discriminative.training.learning_algorithm.DefaultEM

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.