blob: 0569286f0df6b32caf90b12d2489011a9f3a6e29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#ifndef _KLM_FF_H_
#define _KLM_FF_H_
#include <vector>
#include <string>
#include "ff.h"
struct KLanguageModelImpl;
class KLanguageModel : public FeatureFunction {
public:
// param = "filename.lm [-o n]"
KLanguageModel(const std::string& param);
~KLanguageModel();
virtual void FinalTraversalFeatures(const void* context,
SparseVector<double>* features) const;
static std::string usage(bool param,bool verbose);
Features features() const;
protected:
virtual void TraversalFeaturesImpl(const SentenceMetadata& smeta,
const Hypergraph::Edge& edge,
const std::vector<const void*>& ant_contexts,
SparseVector<double>* features,
SparseVector<double>* estimated_features,
void* out_context) const;
private:
int fid_; // conceptually const; mutable only to simplify constructor
KLanguageModelImpl* pimpl_;
};
#endif
|