summaryrefslogtreecommitdiff
path: root/extractor/features/feature.h
blob: 36ea504ac16212b57e592ffd8e831cc5c492145b (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
#ifndef _FEATURE_H_
#define _FEATURE_H_

#include <string>

#include "phrase.h"

using namespace std;

namespace extractor {
namespace features {

/**
 * Structure providing context for computing feature scores.
 */
struct FeatureContext {
  FeatureContext(const Phrase& source_phrase, const Phrase& target_phrase,
                 double source_phrase_count, int pair_count, int num_samples) :
    source_phrase(source_phrase), target_phrase(target_phrase),
    source_phrase_count(source_phrase_count), pair_count(pair_count),
    num_samples(num_samples) {}

  Phrase source_phrase;
  Phrase target_phrase;
  double source_phrase_count;
  int pair_count;
  int num_samples;
};

/**
 * Base class for features.
 */
class Feature {
 public:
  virtual double Score(const FeatureContext& context) const = 0;

  virtual string GetName() const = 0;

  virtual ~Feature();

  static const double MAX_SCORE;
};

} // namespace features
} // namespace extractor

#endif