blob: df1c419f0be9d08aac5c30784339045024dc7217 (
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
|
// For now, the individual features are not kept.
#ifndef SEARCH_WEIGHTS__
#define SEARCH_WEIGHTS__
#include "search/types.hh"
#include "util/exception.hh"
#include "util/string_piece.hh"
#include <boost/unordered_map.hpp>
#include <string>
namespace search {
class WeightParseException : public util::Exception {
public:
WeightParseException() {}
~WeightParseException() throw() {}
};
class Weights {
public:
// Parses weights, sets lm_weight_, removes it from map_.
explicit Weights(StringPiece text);
// Just the three scores we care about adding.
Weights(Score lm, Score oov, Score word_penalty);
Score DotNoLM(StringPiece text) const;
Score LM() const { return lm_; }
Score OOV() const { return oov_; }
Score WordPenalty() const { return word_penalty_; }
// Mostly for testing.
const boost::unordered_map<std::string, Score> &GetMap() const { return map_; }
private:
float Steal(const std::string &str);
typedef boost::unordered_map<std::string, Score> Map;
Map map_;
Score lm_, oov_, word_penalty_;
};
} // namespace search
#endif // SEARCH_WEIGHTS__
|