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
2013-05-29beautifyHieu Hoang
2012-12-07Use boost::unordered_map instead of std::map.Tetsuo Kiso
For storing the word vocabulary used in computation of BLEU scores. This change will reduce the running time of extractor about 2-3 seconds (9% reduction).
2012-06-27rollbackHieu Hoang
2012-06-26lock m_vocab variable access in Encode() and Lookup(). Other functions are ↵Hieu Hoang
still not threadsafe
2012-05-10Avoid "using namespace std" in headers.Tetsuo Kiso
2012-03-20Add thread unsafe Singleton class.Tetsuo Kiso
- Add Vocabulary factory and the unit test. - Remove Scorer::ClearVocabulary().
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.