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

#include <string>

//TODO(pauldb): include headers nicely.
#include "../phrase.h"

using namespace std;

struct FeatureContext {
  FeatureContext(const Phrase& source_phrase, const Phrase& target_phrase,
                 double sample_source_count, int pair_count) :
    source_phrase(source_phrase), target_phrase(target_phrase),
    sample_source_count(sample_source_count), pair_count(pair_count) {}

  Phrase source_phrase;
  Phrase target_phrase;
  double sample_source_count;
  int pair_count;
};

class Feature {
 public:
  virtual double Score(const FeatureContext& context) const = 0;

  virtual string GetName() const = 0;

  static const double MAX_SCORE;
};

#endif