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/moses2/FF
diff options
context:
space:
mode:
authorHieu Hoang <hieuhoang@gmail.com>2017-02-03 13:01:02 +0300
committerHieu Hoang <hieuhoang@gmail.com>2017-02-03 13:01:02 +0300
commite0dc9364c86adc2085e61d53f5427c3a1228ed95 (patch)
tree7ec6165fdb62cdedf39f06ce035f43a03cde9219 /moses2/FF
parentaec2d51ce507913c39fb260d266c8353d81351cd (diff)
remove Compact pt from Moses2 (keep compact lex reordering model)
Diffstat (limited to 'moses2/FF')
-rw-r--r--moses2/FF/FeatureRegistry.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/moses2/FF/FeatureRegistry.cpp b/moses2/FF/FeatureRegistry.cpp
index 3ec8706e5..85abd7214 100644
--- a/moses2/FF/FeatureRegistry.cpp
+++ b/moses2/FF/FeatureRegistry.cpp
@@ -1,7 +1,6 @@
#include "FeatureRegistry.h"
#include "../TranslationModel/Memory/PhraseTableMemory.h"
-#include "../TranslationModel/CompactPT/PhraseTableCompact.h"
#include "../TranslationModel/ProbingPT/ProbingPT.h"
#include "../TranslationModel/UnknownWordPenalty.h"
#include "../TranslationModel/Transliteration.h"
@@ -55,7 +54,6 @@ FeatureRegistry::FeatureRegistry()
// Feature with different name than class.
#define MOSES_FNAME2(name, type) Add(name, new DefaultFeatureFactory< type >());
- MOSES_FNAME2("PhraseDictionaryCompact", PhraseTableCompact);
MOSES_FNAME2("PhraseDictionaryMemory", PhraseTableMemory);
MOSES_FNAME(ProbingPT);
MOSES_FNAME2("PhraseDictionaryTransliteration", Transliteration);