summaryrefslogtreecommitdiff
path: root/mteval/ns_comb.h
blob: 140e7e6a8de506fbb43a2e8f7d77449e07d45b74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _NS_COMB_H_
#define _NS_COMB_H_

#include "ns.h"

class CombinationMetric : public EvaluationMetric {
 public:
  CombinationMetric(const std::string& cmd);
  virtual boost::shared_ptr<SegmentEvaluator> CreateSegmentEvaluator(const std::vector<std::vector<WordID> >& refs) const;
  virtual float ComputeScore(const SufficientStats& stats) const;
  virtual unsigned SufficientStatisticsVectorSize() const;
 private:
  std::vector<EvaluationMetric*> metrics;
  std::vector<float> coeffs;
  std::vector<unsigned> offsets;
  unsigned total_size;
};

#endif