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
2015-05-01sentence-bleu less greedy regarding memoryMatthias Huck
Don't load all references, read them line by line. Corpora with millions of sentences can now be evaluated without consuming gigabytes of RAM.
2013-05-29beautifyHieu Hoang
2012-12-07Further optimization for extractor.Tetsuo Kiso
Fixes inefficient updating N-gram counts. NOTE: Using '--binary' option (this option is not enabled by default yet) for saving outputs would lead to significant speed up.
2012-12-06Speed up N-gram counts when running extractor.Tetsuo Kiso
By replacing std::map with boost::unordered_map. Runtime of extractor on 100-best lists of 2679 sentences: Before: real 0m35.314s user 0m34.030s sys 0m1.280s Ater: real 0m26.729s user 0m25.420s sys 0m1.310s
2012-06-30namespace all classes in mert directoryHieu Hoang
2012-03-19Merge branch 'master' of github.com:moses-smt/mosesdecoder into cleanup-mertTetsuo Kiso
2012-03-19Change the Encoder class to Vocabulary.Tetsuo Kiso
- Introduce the namespace to avoid naming collisions. The class name is used in KenLM. - Add the unit test.
2012-03-19changed size_t to std::size_t for gcc4.6Christian Buck
2012-03-19Move Encoder class from Scorer.h to Ngram.h.Tetsuo Kiso
To add unit tests.
2012-03-14Create a header file for NgramCounts class.Tetsuo Kiso
The reason is that we want to add the unit test.