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>2015-03-10 00:54:03 +0300
committerMatthias Huck <huck@i6.informatik.rwth-aachen.de>2015-03-10 00:54:03 +0300
commit25f54702165c35287c989a21b1e309d0a7170e75 (patch)
tree1a209fb44d4089551b2aae3b98b0397f06fc38e9 /phrase-extract/extract-ghkm/Options.h
parent524ed4406e9eb2dc5796312b46f4915df67dd930 (diff)
GHKM: write target parts-of-speech as a factor
Diffstat (limited to 'phrase-extract/extract-ghkm/Options.h')
-rw-r--r--phrase-extract/extract-ghkm/Options.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/phrase-extract/extract-ghkm/Options.h b/phrase-extract/extract-ghkm/Options.h
index 33d59e290..86fb3dc21 100644
--- a/phrase-extract/extract-ghkm/Options.h
+++ b/phrase-extract/extract-ghkm/Options.h
@@ -18,8 +18,6 @@
***********************************************************************/
#pragma once
-#ifndef EXTRACT_GHKM_OPTIONS_H_
-#define EXTRACT_GHKM_OPTIONS_H_
#include <string>
@@ -41,6 +39,7 @@ public:
, maxScope(3)
, minimal(false)
, partsOfSpeech(false)
+ , partsOfSpeechFactor(false)
, pcfg(false)
, phraseOrientation(false)
, sentenceOffset(0)
@@ -70,6 +69,7 @@ public:
int maxScope;
bool minimal;
bool partsOfSpeech;
+ bool partsOfSpeechFactor;
bool pcfg;
bool phraseOrientation;
int sentenceOffset;
@@ -89,4 +89,3 @@ public:
} // namespace GHKM
} // namespace Moses
-#endif