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 | 1521c9908d10eaa601fdf182bad74ed4122722bc (patch) | |
tree | 23381c2a468addffdb9135aaf48596b09a2835f4 /mteval/ns_ter.h | |
parent | 3789c4ced79140c5ab62379557d2295688972e27 (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 |