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-03Unused variable.Ulrich Germann
2015-04-03Minor bug fix in logging biased sampling for phrase lookup.Ulrich Germann
2015-04-031. A context string for biased sampling in Mmsapt can now be provided on theUlrich Germann
command line with --context-string. Not available in server mode yet. 2. Numerous bug fixes related to biased sampling. 3. Biased sampling now checks that the sampling sticks to the bias. If the distribution of samples deviates too much from the bias, samples whose selection would push the sample distribution even further from the bias are not considered, even if that means that fewer samples are chosen in total.
2015-04-02More fiddling with bjam.Debian
2015-03-30Bug fix.Ulrich Germann
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-30Disabled temporarily. Needs to be adapted to API changes in Mmsapt.Ulrich Germann
2015-03-30Cleanup.Ulrich Germann
2015-03-30Included TargetPhraseCollectionCache.* in fakelib mmsapt.Ulrich Germann
2015-03-30Disabled spe-check-coverage. Needs to be adapted to API changes.Ulrich Germann
2015-03-30Bug fixes.Ulrich Germann
2015-03-30Added member for storing annotations by feature functions.Ulrich Germann
2015-03-30Cleanup.Ulrich Germann
2015-03-30Initial check-in.Ulrich Germann
2015-03-30Changed cxxflags for curlpp to -isystem to avoid compiler warnings.Ulrich Germann
2015-03-28Thread-safe classes for storing context-specific information.Ulrich Germann
2015-03-28Cache for the N most recently used TargetPhraseCollections. Refactored out ↵Ulrich Germann
of mmsapt.h.
2015-03-27Making GetSource() in Manager and Basemanager virtual breaks one regression ↵Ulrich Germann
tests.
2015-03-27Harmonized spelling of CleanUpAfterSentenceProcessing(...).Ulrich Germann
2015-03-27Fixed auto-setting of --with-regtest based on environment variable.Ulrich Germann
2015-03-26Merge branch 'master' of https://github.com/moses-smt/mosesdecoder into mmt-devUlrich Germann
2015-03-26Managers and feature functions now have access to the entire ↵Ulrich Germann
TranslationTask, not just the InputType.
2015-03-26More fiddling with bjam.Ulrich Germann
2015-03-26Managers have now access to the entire translation task.Ulrich Germann
2015-03-26Make NPLM wrapper compile again. Fixes #102.Kenneth Heafield
2015-03-26More bjam fiddling.Ulrich Germann
2015-03-25KenLM 240ea65a021574261a38d45eb68143f26ad177e5Kenneth Heafield
2015-03-25delete typedefs for UINT32 and UINT64. MSVC now has uint32_t and uint64_t /KenHieu Hoang
2015-03-23Check for MinGW using __MINGW32__, not MINGW.Jeroen Vermeulen
This code used the wrong preprocessor macro to check whether it was compiling in a MinGW environment, as far as I can see.
2015-03-23Merge branch 'master' of github.com:moses-smt/mosesdecoderJeroen Vermeulen
2015-03-23Adjust for MinGW's mkdir().Jeroen Vermeulen
MinGW has mkdir(), but it only accepts one argument: the directory's path. It does not accept a file mode.
2015-03-23filter-model-given-input.pl: drop "-encoding None" from phrase table ↵Matthias Huck
binaization with processPhraseTableMin. Recommended by Marcin.
2015-03-23Remove unused code for reading "ar" archives.Jeroen Vermeulen
The Jam code had inherited a function for enumerating "ar" archives. This wasn't used anywhere at all in the codebase, but it depended on a platform-specific "ar.h" header. Windows doesn't have that header, so this change removes one small obstacle to portability.
2015-03-22Merge pull request #100 from alvations/masterHieu Hoang
Added the Gacha Filter used in WMT14 by the Manawi system
2015-03-211. Added FeatureFunction::Setup(TranslationTask const&) const to allow FFs ↵Ulrich Germann
to set themselves up for specific input. 2. FeatureFunction::ChangeSource should not be allow to change the pointer to the source.
2015-03-211. Lifetime of tasks in ThreadPool is now managed via shared pointers.Ulrich Germann
2. Code cleanup in IOWrapper and a bit elsewhere.
2015-03-21Renamed MosesServer::TranslationTask to MosesServer::TranslationRequest and ↵Ulrich Germann
made that a subtype of Moses::TranslationTask to avoid name confusion.
2015-03-21Removed pointer to TranslationTask in InputTypes again. Not the right place ↵Ulrich Germann
to store this information.
2015-03-21Renamed moses/server/TranslationTask.* to moses/server/TranslationRequest.* ↵Ulrich Germann
to avoid naming conflicts.
2015-03-21Library path for xmlrpc-c given via --with-xmlprc-c was not included in the ↵Ulrich Germann
compile requirements.
2015-03-20Merge branch 'master' of https://github.com/moses-smt/mosesdecoderUlrich Germann
2015-03-20Bjam is the most awful build system in the world.Ulrich Germann
2015-03-20Added pragma to tell me if Moses is built with server functionality at ↵Ulrich Germann
compilation time.
2015-03-20Changed order of #includes because of compiler warnings.Ulrich Germann
2015-03-20Enforce python3 and also remove extra empty newline from STDOUTalvations
2015-03-20added more description of usage in docstringalvations
2015-03-20fixed typo in error messagealvations
2015-03-20Added Gacha Filter used by Manawi system from WMT14 translation taskalvations
2015-03-20EMS: support for syntactic metrics for MERT/MIRARico Sennrich
- add "-n-best-trees" to TUNING:decoder-settings - add "mock-output-parser-references = $output-parser" to GENERAL (and define output-parser) - TUNING:tuning-settings should include the metric you want to optimize (e.g. "-batch-mira-args='--sctype BLEU,HWCM'")
2015-03-20reduce-factors: port xml support from train-model.perlRico Sennrich