diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-12-20 15:51:11 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-12-20 15:51:11 -0500 |
commit | 2eb3bb96c6f780c477585b33273fc0c0d56c80e4 (patch) | |
tree | be8fd2a5df3251ce8fa0a908edc0b40cc2c22e9c /mteval/ns_comb.h | |
parent | 0da1f6de1b33bbff5cb99b1938bb07d050479f10 (diff) |
new scorer interface is implemented, but not used
Diffstat (limited to 'mteval/ns_comb.h')
-rw-r--r-- | mteval/ns_comb.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mteval/ns_comb.h b/mteval/ns_comb.h new file mode 100644 index 00000000..140e7e6a --- /dev/null +++ b/mteval/ns_comb.h @@ -0,0 +1,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 |