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-04-30sentence-bleu-nbestMatthias Huck
2015-04-03Attempt at fixing sparse features for hgmiraBarry Haddow
2015-02-16Memory leak correction in TER algorithmChristophe SERVAN
2014-09-22HWCM for MERTRico Sennrich
2014-07-21Merge 08811deb17337356cd8dae9c59c0160590679a35 from joshuaBarry Haddow
2014-03-07Meteor scoring for Moses MERTMichael Denkowski
2013-07-03added document level Bleu scoring to mertSara Stymne
2013-01-03delete MergeScorer in mert/hieu
2012-12-10adding a simple command-line utility for computing sentence-level BLEU (+1)Ales Tamchyna
2012-11-14only include moses root when compilingHieu Hoang
2012-11-12move moses/src/* to moses/Hieu Hoang
2012-11-08More shared build fixesKenneth Heafield
2012-11-08Remove bleu_lib target.Kenneth Heafield
2012-07-17Merge branch 'trunk' into miramergeBarry Haddow
Compiles, not tested. Conflicts: Jamroot OnDiskPt/PhraseNode.h OnDiskPt/TargetPhrase.cpp OnDiskPt/TargetPhrase.h OnDiskPt/TargetPhraseCollection.cpp mert/BleuScorer.cpp mert/Data.cpp mert/FeatureData.cpp moses-chart-cmd/src/Main.cpp moses/src/AlignmentInfo.h moses/src/ChartManager.cpp moses/src/LM/Ken.cpp moses/src/LM/Ken.h moses/src/LMList.h moses/src/LexicalReordering.h moses/src/PhraseDictionaryTree.h moses/src/ScoreIndexManager.h moses/src/StaticData.h moses/src/TargetPhrase.h moses/src/Word.cpp scripts/ems/experiment.meta scripts/ems/experiment.perl scripts/training/train-model.perl
2012-07-04merge JamfilesEva Hasler
2012-06-24merge Lexi Birch's LRScore from mert_mtm5 branch. Compiles and run. Hack, ↵Hieu Hoang
must double check with barry or lexi
2012-06-23mert now compiles with PermScorer. However, didn't implement score() - ↵Hieu Hoang
assert(false). Update Jamfile
2012-06-07mergeEva Hasler
2012-06-01fix start weights in experiment.perl, add hypothesis queue for picking hope ↵Eva Hasler
and fear translations, add variations to 1slack formulation
2012-05-31move all executables into binHieu Hoang
2012-05-29Batch k-best MIRA is written and integrated into mert-moses.plColin Cherry
Regression tests all check out, and kbmira seems to work fine on a Hansard French->English task. HypPackEnumerator class may be of interest to pro.cpp and future optimizers, as it abstracts a lot of the boilerplate involved in enumerating multiple k-best lists. MiraWeightVector is not really mira-specific - just a weight vector that enables efficient averaging. Could be useful to a perceptron as well. Same goes for MiraFeatureVector. Interaction with sparse features is written, but untested.
2012-05-10changed permission, everything changed..Eva Hasler
2012-05-09Added support for external unix filters to preprocess sentences in mert and ↵Matous Machacek
evaluator
2012-04-29testEva
2012-04-12Reduce the number of calling the numeric_limits constructor.Tetsuo Kiso
- Create a test module for Point. - Add test cases.
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-20Move the GzFileBuf implementation into .cpp file.Tetsuo Kiso
Add error check when gzopen() fails.
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-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-18Create files for OptimizerFactory class; add the unit test.Tetsuo Kiso
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-14Create a header file for NgramCounts class.Tetsuo Kiso
The reason is that we want to add the unit test.
2012-03-07Rewrite FeatureData::setFeatureMap(); add the unit test.Tetsuo Kiso
2012-02-27Merge branch 'master' of github.com:moses-smt/mosesdecoderTetsuo Kiso
2012-02-27Change mert/Timer.Tetsuo Kiso
- Add a high resolution timing function to measure the wall-clock time by gettimeofday(). - Now the Timer class use getrusage() to measure the elapsed CPU time as KenLM does. - Revive Timer::restart(). - Add Timer::ToString() for reporting the detail statistics as well as for debugging. - Add a simple unit test for Timer.
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.
2012-02-20Change the naming conventions for the guard macros; Rename TER directory.Tetsuo Kiso
This change might be useful to avoid duplicating the names. The reason is that although MERT programs are standalone applications, some header files such as data.h and point.h have common guard macro names like "DATA_H" and "POINT_H", and this is not good naming conventions when you want to include external headers. Some files actually include headers in Moses and KenLM's util.
2012-02-20Bug fix: tokenizer used in mert; add unit tests for that.Tetsuo Kiso
When tokenizing a string delimited by spaces (say, "9 9 8 7 ") with Tokenize(), resulting a sequence of strings are {"9", "9", "8", "7", "" }, which is different from we have expected. We are not interested in empty strings. This commit fix this issue, and add unit tests for the tokenize functions.
2012-02-08Really simple sharding testBarry Haddow
2011-11-28Avoid naming conflict with glibc's libutilKenneth Heafield
2011-11-28Avoid naming conflict with glibc's libutilKenneth Heafield
2011-11-26Regression tests expect mert in mert/Kenneth Heafield
2011-11-26Regression tests expect mert in mert/Kenneth Heafield
2011-11-21Link dynamically against libz if we have toKenneth Heafield
2011-11-18Jam: Clean up boost library handling, assimilate mertKenneth Heafield