summaryrefslogtreecommitdiff
path: root/mteval/ns_comb.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2011-12-20 15:51:11 -0500
committerChris Dyer <cdyer@cs.cmu.edu>2011-12-20 15:51:11 -0500
commita0b8bb731c73b2d2ed3e16c0fa79aea93b3be813 (patch)
tree8d2599a154eee96998deec377ff662cf4d5ba066 /mteval/ns_comb.h
parent1521c9908d10eaa601fdf182bad74ed4122722bc (diff)
new scorer interface is implemented, but not used
Diffstat (limited to 'mteval/ns_comb.h')
-rw-r--r--mteval/ns_comb.h19
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