Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ScorerFactory.cpp « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d93e851fce4a298ae9557f6ae9be790634e04d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "ScorerFactory.h"

#include <stdexcept>
#include "Scorer.h"
#include "BleuScorer.h"
#include "BleuDocScorer.h"
#include "PerScorer.h"
#include "TerScorer.h"
#include "CHRFScorer.h"
#include "CderScorer.h"
#include "InterpolatedScorer.h"
#include "SemposScorer.h"
#include "PermutationScorer.h"
#include "MeteorScorer.h"
#include "M2Scorer.h"
#include "HwcmScorer.h"
#include "Reference.h"

using namespace std;

namespace MosesTuning
{


vector<string> ScorerFactory::getTypes()
{
  vector<string> types;
  types.push_back(string("BLEU"));
  types.push_back(string("BLEUDOC"));
  types.push_back(string("PER"));
  types.push_back(string("TER"));
  types.push_back(string("CDER"));
  types.push_back(string("CHRF"));
  types.push_back(string("WER"));
  types.push_back(string("MERGE"));
  types.push_back(string("SEMPOS"));
  types.push_back(string("LRSCORE"));
  types.push_back(string("METEOR"));
  types.push_back(string("HWCM"));
  types.push_back(string("M2SCORER"));
  return types;
}

Scorer* ScorerFactory::getScorer(const string& type, const string& config)
{
  if (type == "BLEU") {
    return new BleuScorer(config);
  } else if (type == "BLEUDOC") {
    return new BleuDocScorer(config);
  } else if (type == "PER") {
    return new PerScorer(config);
  } else if (type == "TER") {
    return new TerScorer(config);
  } else if (type == "CDER") {
    return new CderScorer(config, true);
  } else if (type == "WER") {
    // CderScorer can compute both CDER and WER metric
    return new CderScorer(config, false);
  } else if (type == "SEMPOS") {
    return new SemposScorer(config);
  } else if (type == "M2SCORER") {
    return new M2Scorer(config);
  } else if ((type == "HAMMING") || (type == "KENDALL")) {
    return (PermutationScorer*) new PermutationScorer(type, config);
  } else if (type == "METEOR") {
    return new MeteorScorer(config);
  } else if (type == "CHRF") {
    return new CHRFScorer(config);
  } else if (type == "HWCM") {
    return new HwcmScorer(config);
  } else {
    if (type.find(',') != string::npos) {
      return new InterpolatedScorer(type, config);
    } else {
      throw runtime_error("Unknown scorer type: " + type);
    }
  }
}

}