summaryrefslogtreecommitdiff
path: root/mteval/ns_wer.cc
blob: f9b2bbbb4ce6dcde1f55b5a69a06cc65a697383e (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
#include "ns_wer.h"
#include "tdict.h"
#include "levenshtein.h"

static const unsigned kNUMFIELDS = 2;
static const unsigned kEDITDISTANCE = 0;
static const unsigned kCHARCOUNT = 1;

bool WERMetric::IsErrorMetric() const {
  return true;
}

unsigned WERMetric::SufficientStatisticsVectorSize() const {
  return 2;
}

void WERMetric::ComputeSufficientStatistics(const std::vector<WordID>& hyp,
                                            const std::vector<std::vector<WordID> >& refs,
                                            SufficientStats* out) const {
  out->fields.resize(kNUMFIELDS);
  float best_score = hyp.size();
  for (size_t i = 0; i < refs.size(); ++i) {
    float score = cdec::LevenshteinDistance(hyp, refs[i]);
    if (score < best_score) {
      out->fields[kEDITDISTANCE] = score;
      out->fields[kCHARCOUNT] = refs[i].size();
      best_score = score;
    }
  }
}

float WERMetric::ComputeScore(const SufficientStats& stats) const {
  return stats.fields[kEDITDISTANCE] / stats.fields[kCHARCOUNT];
}