blob: 935e283cab1c89430f5a883bd5750c59a81734ca (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#ifndef _LM_FF_H_
#define _LM_FF_H_
#include <vector>
#include <string>
#include "hg.h"
#include "ff.h"
#include "config.h"
class LanguageModelImpl;
class LanguageModel : public FeatureFunction {
public:
// param = "filename.lm [-o n]"
LanguageModel(const std::string& param);
~LanguageModel();
virtual void FinalTraversalFeatures(const void* context,
SparseVector<double>* features) const;
std::string DebugStateToString(const void* state) 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
mutable LanguageModelImpl* pimpl_;
};
#ifdef HAVE_RANDLM
class LanguageModelRandLM : public FeatureFunction {
public:
// param = "filename.lm [-o n]"
LanguageModelRandLM(const std::string& param);
~LanguageModelRandLM();
virtual void FinalTraversalFeatures(const void* context,
SparseVector<double>* features) const;
std::string DebugStateToString(const void* state) 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:
const int fid_;
mutable LanguageModelImpl* pimpl_;
};
#endif
#endif
|