diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-12-14 21:02:50 -0800 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-12-14 21:02:50 -0800 |
commit | 0da1f6de1b33bbff5cb99b1938bb07d050479f10 (patch) | |
tree | 1553e38d4288cd6591d5567afe8b3809d623d77c /mteval/ns_ter.h | |
parent | 7fc75dc9107203f1e51ab313d647fbbb1624d5a8 (diff) |
random incomplete metric stuff, including string subsequence kernel impl
Diffstat (limited to 'mteval/ns_ter.h')
-rw-r--r-- | mteval/ns_ter.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/mteval/ns_ter.h b/mteval/ns_ter.h new file mode 100644 index 00000000..bb90f95e --- /dev/null +++ b/mteval/ns_ter.h @@ -0,0 +1,18 @@ +#ifndef _NS_TER_H_ +#define _NS_TER_H_ + +#include "ns.h" + +class TERMetric : public EvaluationMetric { + friend class EvaluationMetric; + protected: + TERMetric() : EvaluationMetric("TER") {} + + public: + virtual void ComputeSufficientStatistics(const std::vector<WordID>& hyp, + const std::vector<std::vector<WordID> >& refs, + SufficientStats* out) const; + virtual float ComputeScore(const SufficientStats& stats) const; +}; + +#endif |