summaryrefslogtreecommitdiff
path: root/extractor/scorer.h
blob: ba71a6eecae027498f2c73ac78cfd6ec736530ed (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
#ifndef _SCORER_H_
#define _SCORER_H_

#include <memory>
#include <string>
#include <vector>

using namespace std;

class Feature;
class FeatureContext;

class Scorer {
 public:
  Scorer(const vector<shared_ptr<Feature> >& features);

  virtual ~Scorer();

  virtual vector<double> Score(const FeatureContext& context) const;

  virtual vector<string> GetFeatureNames() const;

 protected:
  Scorer();

 private:
  vector<shared_ptr<Feature> > features;
};

#endif