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
path: root/moses
AgeCommit message (Collapse)Author
2015-04-21Work on integrating hierarchical lexicalized reordering models with sampled ↵Ulrich Germann
phrase tables.
2015-04-21Added entry for bitext-find.Ulrich Germann
2015-04-21Initial check-in: search utility for bi-concordancing.Ulrich Germann
2015-04-21New constructor.Ulrich Germann
2015-04-21mmBitext now maintains a vector of document names.Ulrich Germann
2015-04-21Initial check-in.Ulrich Germann
2015-04-21Minor edits for better readability.Ulrich Germann
2015-04-21Additions for writing out alignments in yawat format (for kwipc).Ulrich Germann
2015-04-05Bug fix.Ulrich Germann
2015-04-05Merge branch 'master' into mmt-devUlrich Germann
Conflicts: Jamroot moses/TranslationModel/UG/mmsapt.h
2015-04-05- Code refactoring for Bitext class.Ulrich Germann
- Bug fixes and conceptual improvements in biased sampling. The sampling now tries to stick to the bias, even when an unsuitable corpus dominates the occurrences.
2015-04-03Merge branch 'master' of https://github.com/moses-smt/mosesdecoderMichael Denkowski
2015-04-03Consistent line ending behavior for alignment printing optionsMichael Denkowski
2015-04-03Better logging during biased sampling in Mmsapt.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-03Make an include path explicit.Jeroen Vermeulen
Better to see clearly where that header is supposed to come from, since it lives halfway across the codebase. I think this may also make the "classifier" dance in moses/Jamfile unnecessary, which would be a nice simplification, but I'm not confident enough to just make the change.
2015-04-02Replace use of tmpnam with boost::filesystem.Jeroen Vermeulen
Silences a few annoying warnings from gcc: "tmpnam is dangerous" (and the suggestion to use mkstemp instead).
2015-04-01Remove old obsolete probingPT testsXapaJIaMnu
2015-03-31delete External FF. FF framework changes too fast to be able to keep this ↵Hieu Hoang
up-to-date
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-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-29Use boost::filesystem for "rm -rf".Jeroen Vermeulen
Replaces a system() call (which was a portability problem) and fixes, en passant, a warning about its return value being ignored.
2015-03-29Fix some compile warnings (gcc 4.9.2).Jeroen Vermeulen
Mostly signed/unsigned comparisons and reordered member initializations; also a few unused variables. There are more, but if I chip away at them for a while, who knows, it may catch on and warnings may eventually become socially stigmatizing. :)
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-28Modernize "C" includes in moses.Jeroen Vermeulen
This is one of those little chores in managing a long-lived C++ project: standard C headers like stdio.h and math.h now have their own place in the C++ standard as resp. cstdio, cmath, and so on. In this branch the #include names are updated for the moses/ subdirectory; more branches to follow. C++11 adds cstdint, but to support compilation with the previous standard, that change is left for later.
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-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-26More bjam fiddling.Ulrich Germann
2015-03-25delete typedefs for UINT32 and UINT64. MSVC now has uint32_t and uint64_t /KenHieu Hoang
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-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-19More fiddling with bjam.Ulrich Germann