Merge branch 'master' of github.com:moses-smt/mosesdecoder into merge-cmd

This commit is contained in:
Hieu Hoang 2014-11-27 12:12:29 +00:00
commit e2ef576f40
2 changed files with 2 additions and 0 deletions

View File

@ -263,6 +263,7 @@ FeatureRegistry::FeatureRegistry()
MOSES_FNAME2("OxFactoredLM", OxLM<oxlm::FactoredLM>);
MOSES_FNAME2("OxFactoredMaxentLM", OxLM<oxlm::FactoredMaxentLM>);
MOSES_FNAME2("OxSourceFactoredLM", SourceOxLM);
MOSES_FNAME2("OxTreeLM", OxLM<oxlm::FactoredTreeLM>);
#endif
Add("KENLM", new KenFactory());

View File

@ -201,6 +201,7 @@ void OxLM<Model>::CleanUpAfterSentenceProcessing(const InputType& source) {
template class OxLM<LM>;
template class OxLM<FactoredLM>;
template class OxLM<FactoredMaxentLM>;
template class OxLM<FactoredTreeLM>;
}