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
2016-01-12Bug fix related to --report-all-factors.Ulrich Germann
2016-01-06eliminate compiler warningsMatthias Huck
2016-01-06daily automatic beautifierMosesAdmin
2016-01-05Fix bug in reporting of word alignment info in batch mode.Ulrich Germann
2015-12-14Code cleanup and refactoring.Ulrich Germann
2015-12-10Passing around AllOptions or references thereto everywhere,Ulrich Germann
strong them locally where appropriate, so that compontents can become independent of StaticData once instantiated.
2015-12-09daily automatic beautifierMosesAdmin
2015-12-07Code cleanup.Ulrich Germann
2015-12-06Code cleanup.Ulrich Germann
2015-12-06Code cleanup.Ulrich Germann
2015-12-03daily automatic beautifierMosesAdmin
2015-12-02Code cleanup and bug fix in (Base)Manager::OutputSurface:Ulrich Germann
Mark-up of unkown words in output.
2015-11-17move options out of HypothesisDavid Madl
2015-11-17Hypothesis: get rid of calls into Manager from constructorDavid Madl
2015-11-11More options refactoring (OOV Handling this time).Ulrich Germann
2015-11-11Moved placeholder factor variable from StaticData to InputOptions.Ulrich Germann
2015-11-09Consistent naming: total score -> m_futureScoreHieu Hoang
2015-11-04Looks like this wanted to be commented out prior to commitMichael Denkowski
2015-11-02daily automatic beautifierMosesAdmin
2015-10-31Options refactoring. Moses crashed in server mode when asked to provide ↵Ulrich Germann
n-best translations with scores.
2015-10-25WordsRange -> RangeHieu Hoang
2015-10-18change dynamic to static castHieu Hoang
2015-10-16daily automatic beautifierMosesAdmin
2015-10-16use util::StringStreamHieu Hoang
2015-08-27daily automatic beautifierMosesAdmin
2015-08-26add back OutputPassthroughInformation() /Vincent NguyenHieu Hoang
2015-08-08daily automatic beautifierMosesAdmin
2015-08-07More reorganisation of options.Ulrich Germann
2015-08-06Reorganisation of options.Ulrich Germann
The purpose of this effort is to have options local to the individual translation task, so that they can be changed in the running system in a multi-threaded system.
2015-07-20allow customized prefix/suffix to mark unknown wordsPhilipp Koehn
2015-05-13Remove trailing whitespace from C++ files.Jeroen Vermeulen
2015-05-12Code reorganization with respect to hypergraph output.Ulrich Germann
2015-05-02beautifyHieu Hoang
2015-04-30Remove trailing whitespace in C++ files.Jeroen Vermeulen
2015-04-26Merge branch 'master' of https://github.com/moses-smt/mosesdecoder into mmt-devUlrich Germann
Conflicts: moses/Syntax/F2S/Manager-inl.h moses/TranslationModel/UG/mmsapt.cpp
2015-04-23Merge branch 'master' of https://github.com/moses-smt/mosesdecoderMatthias Huck
2015-04-23n-best list creation in phrase-based decoding: improved efficiency with ↵Matthias Huck
sparse features
2015-04-23Add cross-platform randomizer module.Jeroen Vermeulen
The code uses two mechanisms for generating random numbers: srand()/rand(), which is not thread-safe, and srandom()/random(), which is POSIX-specific. Here I add a util/random.cc module that centralizes these calls, and unifies some common usage patterns. If the implementation is not good enough, we can now change it in a single place. To keep things simple, this uses the portable srand()/rand() but protects them with a lock to avoid concurrency problems. The hard part was to keep the regression tests passing: they rely on fixed sequences of random numbers, so a small code change could break them very thoroughly. Util::rand(), for wide types like size_t, calls std::rand() not once but twice. This behaviour was generalized into utils::wide_rand() and friends.
2015-04-05Merge branch 'master' into mmt-devUlrich Germann
Conflicts: Jamroot moses/TranslationModel/UG/mmsapt.h
2015-04-03Consistent line ending behavior for alignment printing optionsMichael Denkowski
2015-03-30Feature functions and the constructors of TranslationOptionCollectionsUlrich Germann
now have access to the current translation task. This was done to allow context-sensitive processing (if provided by the FF).
2015-03-26Managers and feature functions now have access to the entire ↵Ulrich Germann
TranslationTask, not just the InputType.
2015-03-26Managers have now access to the entire translation task.Ulrich Germann
2015-03-09Commented out an #include that triggered a 'deprecated header' warning.Ulrich Germann
2015-01-14beautifyHieu Hoang
2015-01-02consistent constructor for all managersHieu Hoang
2015-01-02move OutputBest() from TranslationTask to ManagerHieu Hoang
2014-12-30move OutputAlignment() to Manager classHieu Hoang
2014-12-30moving more stuff out of IOWrapperHieu Hoang
2014-12-30convert static methods to const methodsHieu Hoang