Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-09-22basic support for more metrics with kbmiraRico Sennrich
metrics need getReferenceLength (for background smoothing) to work with kbmira
2013-05-29beautifyHieu Hoang
2012-07-10Integrate Lexi's LR Score into tuningHieu Hoang
2012-06-30namespace all classes in mert directoryHieu Hoang
2012-05-10Avoid "using namespace std" in headers.Tetsuo Kiso
2012-05-09Added support for external unix filters to preprocess sentences in mert and ↵Matous Machacek
evaluator
2012-03-10mert: Prefix private members with "m_" except TER.Tetsuo Kiso
Squashed commit of the following: - Clean up PRO. - Clean up ScoreStats. - Clean up ScoreData. - Clean up ScoreArray. - Remove unnecessary headers. - Clean up ScopedVector. - Clean up Point. - Clean up PerScorer. - Clean up Optimizer. - Clean up MergeScorer. - Clean up InterpolatedScorer. - Clean up FileStream. - Clean up FeatureStats. - Remove inefficient string concatenation. - Clean up FeatureData. - Clean up FeatureArray. - Clean up Data.
2012-02-28Support for using factors in mert and evaluatorMatous Machacek
example: Use --factor "0|2" to use only first and third factor from nbest list and from reference. If you use interpolated scorer, separate records with comma (e.g. --factor "0|2,1").
2012-02-27Fix memory leaks.Tetsuo Kiso
- The Scorer and ScoreData objects allocated by the new operator are now released using the ScopedVector class. - Add 'virtual' to inherited functions from the Scorer class.
2012-02-26Added interpolated scorerMatous Machacek
example: to interpolate BLEU and CDER use --sctype=BLEU,CDER to specify weights use --scconfig=weights:0.3+0.7 This scorer should replace MergeScorer (which requires mert-moses-multi.pl) soon. Interpolated scorer is more universal and is used in the same way as other scorers.