blob: 78badb2e57379aab4f2f1fbf6cba0d6af561b63b (
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
|