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
diff options
context:
space:
mode:
authorMatthias Huck <huck@i6.informatik.rwth-aachen.de>2014-07-28 21:27:12 +0400
committerMatthias Huck <huck@i6.informatik.rwth-aachen.de>2014-07-28 21:27:12 +0400
commit3a5dee12e85282132c20c7fe2ca649c00bf7e78f (patch)
treedba9a37072674f869451ecef58e18a8777fbcedd /phrase-extract/extract-ghkm/Options.h
parent061aac9e3b8a26b4019b342e25cfc4295c3dfd1c (diff)
implementation of phrase orientation in GHKM extraction
(...but a corresponding feature function for the chart-based decoder has not been written yet)
Diffstat (limited to 'phrase-extract/extract-ghkm/Options.h')
-rw-r--r--phrase-extract/extract-ghkm/Options.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/phrase-extract/extract-ghkm/Options.h b/phrase-extract/extract-ghkm/Options.h
index 28a581802..0102e2f64 100644
--- a/phrase-extract/extract-ghkm/Options.h
+++ b/phrase-extract/extract-ghkm/Options.h
@@ -40,6 +40,7 @@ public:
, maxScope(3)
, minimal(false)
, pcfg(false)
+ , phraseOrientation(false)
, treeFragments(false)
, sourceLabels(false)
, sentenceOffset(0)
@@ -64,6 +65,7 @@ public:
int maxScope;
bool minimal;
bool pcfg;
+ bool phraseOrientation;
bool treeFragments;
bool sourceLabels;
std::string sourceLabelSetFile;