mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-28 06:22:14 +03:00
add Bilingual LM class
This commit is contained in:
parent
9098f3a8b4
commit
114002eead
@ -1466,6 +1466,11 @@
|
|||||||
<type>1</type>
|
<type>1</type>
|
||||||
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/WordTranslationFeature.h</locationURI>
|
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/WordTranslationFeature.h</locationURI>
|
||||||
</link>
|
</link>
|
||||||
|
<link>
|
||||||
|
<name>FF/bilingual-lm</name>
|
||||||
|
<type>2</type>
|
||||||
|
<locationURI>virtual:/virtual</locationURI>
|
||||||
|
</link>
|
||||||
<link>
|
<link>
|
||||||
<name>LM/Backward.cpp</name>
|
<name>LM/Backward.cpp</name>
|
||||||
<type>1</type>
|
<type>1</type>
|
||||||
@ -2026,6 +2031,16 @@
|
|||||||
<type>1</type>
|
<type>1</type>
|
||||||
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/OSM-Feature/osmHyp.h</locationURI>
|
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/OSM-Feature/osmHyp.h</locationURI>
|
||||||
</link>
|
</link>
|
||||||
|
<link>
|
||||||
|
<name>FF/bilingual-lm/BilingualLM.cpp</name>
|
||||||
|
<type>1</type>
|
||||||
|
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/bilingual-lm/BilingualLM.cpp</locationURI>
|
||||||
|
</link>
|
||||||
|
<link>
|
||||||
|
<name>FF/bilingual-lm/BilingualLM.h</name>
|
||||||
|
<type>1</type>
|
||||||
|
<locationURI>PARENT-3-PROJECT_LOC/moses/FF/bilingual-lm/BilingualLM.h</locationURI>
|
||||||
|
</link>
|
||||||
<link>
|
<link>
|
||||||
<name>LM/oxlm/LBLLM.cpp</name>
|
<name>LM/oxlm/LBLLM.cpp</name>
|
||||||
<type>1</type>
|
<type>1</type>
|
||||||
|
@ -49,6 +49,7 @@
|
|||||||
#include "NieceTerminal.h"
|
#include "NieceTerminal.h"
|
||||||
#include "SpanLength.h"
|
#include "SpanLength.h"
|
||||||
#include "SyntaxRHS.h"
|
#include "SyntaxRHS.h"
|
||||||
|
#include "bilingual-lm/BilingualLM.h"
|
||||||
|
|
||||||
#include "moses/FF/SkeletonStatelessFF.h"
|
#include "moses/FF/SkeletonStatelessFF.h"
|
||||||
#include "moses/FF/SkeletonStatefulFF.h"
|
#include "moses/FF/SkeletonStatefulFF.h"
|
||||||
@ -211,6 +212,7 @@ FeatureRegistry::FeatureRegistry()
|
|||||||
MOSES_FNAME(SparseHieroReorderingFeature);
|
MOSES_FNAME(SparseHieroReorderingFeature);
|
||||||
MOSES_FNAME(SpanLength);
|
MOSES_FNAME(SpanLength);
|
||||||
MOSES_FNAME(SyntaxRHS);
|
MOSES_FNAME(SyntaxRHS);
|
||||||
|
MOSES_FNAME(BilingualLM);
|
||||||
|
|
||||||
MOSES_FNAME(SkeletonStatelessFF);
|
MOSES_FNAME(SkeletonStatelessFF);
|
||||||
MOSES_FNAME(SkeletonStatefulFF);
|
MOSES_FNAME(SkeletonStatefulFF);
|
||||||
|
@ -70,6 +70,7 @@ lib moses :
|
|||||||
TranslationModel/Scope3Parser/*.cpp
|
TranslationModel/Scope3Parser/*.cpp
|
||||||
TranslationModel/CYKPlusParser/*.cpp
|
TranslationModel/CYKPlusParser/*.cpp
|
||||||
FF/*.cpp
|
FF/*.cpp
|
||||||
|
FF/bilingual-lm/*.cpp
|
||||||
FF/OSM-Feature/*.cpp
|
FF/OSM-Feature/*.cpp
|
||||||
FF/LexicalReordering/*.cpp
|
FF/LexicalReordering/*.cpp
|
||||||
PP/*.cpp
|
PP/*.cpp
|
||||||
|
Loading…
Reference in New Issue
Block a user