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/PP
AgeCommit message (Collapse)Author
2016-03-24Missing #include <set> (which BTW probably shouldn't be used)Kenneth Heafield
2016-02-13daily automatic beautifiermmt-mergeMosesAdmin
2016-02-12Option for target constituent constrained phrase extraction. ↵Matthias Huck
TargetConstituentAdjacencyFeature.
2016-01-11TargetPreferencesPhrasePropertyMatthias Huck
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-01-14beautifyHieu Hoang
2015-01-14Fix a few warnings.Phil Williams
2014-12-13merged master into dynamic-models and solved conflictsNicola Bertoldi
2014-12-03PhraseOrientationFeatureMatthias Huck
2014-08-08OrientationPhrasePropertyMatthias Huck
2014-08-08source labels: integration into EMSMatthias Huck
2014-07-11calculate baseline score without optimisationHieu Hoang
2014-06-19debug output for PhrasePropertyHieu Hoang
2014-06-16Merge branch 'hieu' of ../mosesdecoder.hieuHieu Hoang
2014-06-13PhraseProperty destructorMatthias Huck
2014-06-13mergeHieu Hoang
2014-06-13mergeHieu Hoang
2014-06-13Minor modification of the phrase properties framework.Matthias Huck
Properties can save memory by not storing the value string.
2014-06-13merge with masterHieu Hoang
2014-06-12SourceLabelsPhrasePropertyMatthias Huck
2014-06-11CountsPhraseProperty: add comment to headerMatthias Huck
2014-06-11A simple phrase property class to access the three phrase count values.Matthias Huck
The counts are usually not needed during decoding and are not loaded from the phrase table. This is just a workaround that can make them available to features which have a use for them. If you need access to the counts, copy the two marginal counts and the joint count into an additional information property with key "Counts", e.g. using awk: $ zcat phrase-table.gz | awk -F' \|\|\| ' '{printf("%s {{Counts %s}}\n",$0,$5);}' | gzip -c > phrase-table.withCountsPP.gz CountsPhraseProperty reads them from the phrase table and provides methods GetSourceMarginal(), GetTargetMarginal(), GetJointCount().
2014-06-10make sure int are cast to floatHieu Hoang
2014-06-10bug in SpanLength FFHieu Hoang
2014-06-10bug in SpanLength FFHieu Hoang
2014-06-10Merge github.com:moses-smt/mosesdecoder into hieuHieu Hoang
2014-06-10minor const£Hieu Hoang
2014-06-09span lengthHieu Hoang
2014-06-08beautifyNicola Bertoldi
2014-06-06span lengthHieu Hoang
2014-06-05span length propertyHieu Hoang
2014-06-04don't output SpanLength property if no non-termsHieu Hoang
2014-06-04span lengthHieu Hoang
2014-05-20commentMatthias Huck
2014-05-20Framework for additional phrase properties in decoding.Matthias Huck
Derive your property class from PhraseProperty. Do any expensive string processing of the property value in there, not in the feature implementation, and provide methods to access the information in appropriate data formats. The property value string will thus have to be processed only once (on loading) rather than each time the respective phrase is applied and your feature needs to access the property value.