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
diff options
context:
space:
mode:
authorAles Tamchyna <tamchyna@ufal.mff.cuni.cz>2015-02-16 13:30:36 +0300
committerAles Tamchyna <tamchyna@ufal.mff.cuni.cz>2015-02-16 13:30:36 +0300
commitb05fc4c9bcdd36171a4206749cc080d71c50271d (patch)
tree9eb3c582497d1da2ae43dd677dc7e0c91136a581 /moses
parenta9926e7f4990b5a74b434fb99a8c8c753b8c8bbf (diff)
properly register bigram VW feature
Diffstat (limited to 'moses')
-rw-r--r--moses/FF/Factory.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/moses/FF/Factory.cpp b/moses/FF/Factory.cpp
index 28a19c91c..2fbd1d304 100644
--- a/moses/FF/Factory.cpp
+++ b/moses/FF/Factory.cpp
@@ -67,6 +67,7 @@
#ifdef HAVE_VW
#include "moses/FF/VW/VW.h"
#include "moses/FF/VW/VWFeatureSourceBagOfWords.h"
+#include "moses/FF/VW/VWFeatureSourceBigram.h"
#include "moses/FF/VW/VWFeatureSourceIndicator.h"
#include "moses/FF/VW/VWFeatureSourcePhraseInternal.h"
#include "moses/FF/VW/VWFeatureSourceWindow.h"
@@ -249,6 +250,7 @@ FeatureRegistry::FeatureRegistry()
#ifdef HAVE_VW
MOSES_FNAME(VW);
MOSES_FNAME(VWFeatureSourceBagOfWords);
+ MOSES_FNAME(VWFeatureSourceBigram);
MOSES_FNAME(VWFeatureSourceIndicator);
MOSES_FNAME(VWFeatureSourcePhraseInternal);
MOSES_FNAME(VWFeatureSourceWindow);