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:
authorMarcin Junczys-Dowmunt <junczys@amu.edu.pl>2015-01-08 14:30:07 +0300
committerMarcin Junczys-Dowmunt <junczys@amu.edu.pl>2015-01-08 14:30:07 +0300
commit3f1cb319cd696660c1c24ba682a0399b41dfc7c4 (patch)
tree9cba9b8a0d3b002a5cd332be780a2e7344ef7b9f /moses/IOWrapper.cpp
parent6b73d1b8f4d6638fbf2d0e41b83cc794c94a2a0e (diff)
Added TabbedSentence and first attempt at external VW features
Diffstat (limited to 'moses/IOWrapper.cpp')
-rw-r--r--moses/IOWrapper.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/moses/IOWrapper.cpp b/moses/IOWrapper.cpp
index e69bb3542..22c653b6d 100644
--- a/moses/IOWrapper.cpp
+++ b/moses/IOWrapper.cpp
@@ -416,6 +416,9 @@ bool IOWrapper::ReadInput(InputTypeEnum inputType, InputType*& source)
case TreeInputType:
source = GetInput(new TreeInput);
break;
+ case TabbedSentenceInput:
+ source = GetInput(new TabbedSentence);
+ break;
default:
TRACE_ERR("Unknown input type: " << inputType << "\n");
}