#ifndef _KLM_FF_H_ #define _KLM_FF_H_ #include #include #include "ff_factory.h" #include "ff.h" template struct KLanguageModelImpl; // the supported template types are instantiated explicitly // in ff_klm.cc. template class KLanguageModel : public FeatureFunction { public: // param = "filename.lm [-o n]" KLanguageModel(const std::string& param); ~KLanguageModel(); virtual void FinalTraversalFeatures(const void* context, SparseVector* features) const; static std::string usage(bool param,bool verbose); protected: virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta, const HG::Edge& edge, const std::vector& ant_contexts, SparseVector* features, SparseVector* estimated_features, void* out_context) const; private: int fid_; // conceptually const; mutable only to simplify constructor int oov_fid_; // will be zero if extra OOV feature is not configured by decoder KLanguageModelImpl* pimpl_; }; struct KLanguageModelFactory : public FactoryBase { FP Create(std::string param) const; std::string usage(bool params,bool verbose) const; }; #endif