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
2012-03-23Fixed compilation errorapply-coding-standardMatous Machacek
2012-03-23Remove unnecessary headers; prefix private members with "m_".Tetsuo Kiso
- Add const. - Add a virtual destructor to abstract class. - Add some TODOs to some constant values. Create files for "overlapping" classes.
2012-03-23Added SemposScorer to mert and evaluatorMatous Machacek
2012-03-23scripts to escape moses specific charactersphikoehn
2012-03-23Merge branch 'master' of git://github.com/moses-smt/mosesdecoderphikoehn
2012-03-23bug fix to filter hierarchicalphikoehn
2012-03-22Add error check when opening a file.Tetsuo Kiso
2012-03-22only filter rule and reordering tables, if the tables changes, not just when ↵phikoehn
weights or other settings changed
2012-03-21mop upphikoehn
2012-03-20Merge branch 'master' of github.com:moses-smt/mosesdecoderTetsuo Kiso
2012-03-20Fix a compile error I missed when developing on OS X.Tetsuo Kiso
2012-03-20Move the GzFileBuf implementation into .cpp file.Tetsuo Kiso
Add error check when gzopen() fails.
2012-03-20Rename gzfilebuf.h; apply coding style.Tetsuo Kiso
2012-03-20Merge branch 'master' of github.com:moses-smt/mosesdecoderKenneth Heafield
2012-03-20Add comments to moses/src/LM/JamfileKenneth Heafield
2012-03-20Use assertions in the test case.Tetsuo Kiso
It gets easier to detect the point of failure in the test.
2012-03-20lotsa minor changes: mostly bug fixes, tokenizer now esacapes special Moses ↵phikoehn
characters (|<>&)
2012-03-20Add an unit test for BleuScorer.Tetsuo Kiso
The test contains only ngram counting. More tests for calculating BLEU score are reuiqred.
2012-03-20Add thread unsafe Singleton class.Tetsuo Kiso
- Add Vocabulary factory and the unit test. - Remove Scorer::ClearVocabulary().
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-19updated typenameChristian Buck
2012-03-19changed size_t to std::size_t for gcc4.6Christian Buck
2012-03-19Merge branch 'master' of github.com:moses-smt/mosesdecoderChristian Buck
2012-03-19Move Encoder class from Scorer.h to Ngram.h.Tetsuo Kiso
To add unit tests.
2012-03-19Add some functions to BleuScorer for unit testing.Tetsuo Kiso
This commit also includes - Fix typo. - Fix indentations. - Add 'const' to Scorer::applyFactors().
2012-03-18Create files for OptimizerFactory class; add the unit test.Tetsuo Kiso
2012-03-18Pass parameters by const reference.Tetsuo Kiso
2012-03-18Fix a file permission.Tetsuo Kiso
2012-03-18Fixed bug in CderScorer.cppMatous Machacek
2012-03-18Create Reference class to clean up BleuScorer.Tetsuo Kiso
- Add an unit test for Reference. - Move functions to calculate the reference length from BleuScorer to Reference.
2012-03-16Merge branch 'master' of github.com:moses-smt/mosesdecoderChristian Buck
2012-03-15xcodeHieu Hoang
2012-03-15Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang
2012-03-15xcodeHieu Hoang
2012-03-14Clean up BleuScorer.Tetsuo Kiso
2012-03-14Clean up BleuScorer with lookup().Tetsuo Kiso
2012-03-14Create a header file for NgramCounts class.Tetsuo Kiso
The reason is that we want to add the unit test.
2012-03-11KenLM c1dba12Kenneth Heafield
- Reject NaNs - Fix ChartState hashing (unused in Moses) - Expose CreateOrThrow - Minor portability improvement in getopt
2012-03-11Merge branch 'master' of github.com:moses-smt/mosesdecoderHieu Hoang
2012-03-111. use new gsort, rather than sort, if it is availableHieu Hoang
2. check return value of cat command in extract-parallel in case it runs out of disk space etc
2012-03-10Clean up accessors and mutators.Tetsuo Kiso
2012-03-10Remove hard-coded "/dev/stdout".Tetsuo Kiso
This will improve the portability. We also change the interface of I/O functions for ease of the development unit tests.
2012-03-10Clean up Data; add TODOs.Tetsuo Kiso
2012-03-10Pass by pointers to Scorer instead of references.Tetsuo Kiso
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-03-09Minor change for calculating BLEU.Tetsuo Kiso
To avoid defining the similar variables twice to calculate document-wise BLEU and sentence-wise BLEU scores.
2012-03-07Remove an unused variable and unnecessary 'std::'.Tetsuo Kiso
2012-03-07Remove an unused variable.Tetsuo Kiso
2012-03-07Clean up Data::loadnbest().Tetsuo Kiso
Add helper functions.