blob: 77be14b978f352c3767e360c11233664e7dc0032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef NS_EXTERNAL_SCORER_H_
#define NS_EXTERNAL_SCORER_H_
#include "ns.h"
struct NScoreServer;
class ExternalMetric : public EvaluationMetric {
public:
ExternalMetric(const std::string& metricid, const std::string& command);
~ExternalMetric();
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;
protected:
NScoreServer* eval_server;
};
#endif
|