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

ScoreData.cpp « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 914245bf7b95984ff5e063f0def6246e9e126f7a (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 *  ScoreData.cpp
 *  met - Minimum Error Training
 *
 *  Created by Nicola Bertoldi on 13/05/08.
 *
 */

#include "ScoreData.h"
#include "Scorer.h"
#include "Util.h"
#include "FileStream.h"

ScoreData::ScoreData(Scorer& ptr):
  theScorer(&ptr)
{
  score_type = theScorer->getName();
  // This is not dangerous: we don't use the this pointer in SetScoreData.
  theScorer->setScoreData(this);
  number_of_scores = theScorer->NumberOfScores();
  // TRACE_ERR("ScoreData: number_of_scores: " << number_of_scores << std::endl);
}

void ScoreData::save(std::ofstream& outFile, bool bin)
{
  for (scoredata_t::iterator i = array_.begin(); i !=array_.end(); i++) {
    i->save(outFile, score_type, bin);
  }
}

void ScoreData::save(const std::string &file, bool bin)
{
  if (file.empty()) return;
//  TRACE_ERR("saving the array into " << file << std::endl);

  // matches a stream with a file. Opens the file.
  std::ofstream outFile(file.c_str(), std::ios::out);

  ScoreStats entry;

  save(outFile, bin);

  outFile.close();
}

void ScoreData::load(ifstream& inFile)
{
  ScoreArray entry;

  while (!inFile.eof()) {

    if (!inFile.good()) {
      std::cerr << "ERROR ScoreData::load inFile.good()" << std::endl;
    }

    entry.clear();
    entry.load(inFile);

    if (entry.size() == 0) {
      break;
    }
    add(entry);
  }
}


void ScoreData::load(const std::string &file)
{
  TRACE_ERR("loading score data from " << file << std::endl);

  inputfilestream inFile(file); // matches a stream with a file. Opens the file

  if (!inFile) {
    throw runtime_error("Unable to open score file: " + file);
  }

  load((ifstream&) inFile);

  inFile.close();
}


void ScoreData::add(ScoreArray& e)
{
  if (exists(e.getIndex())) { // array at position e.getIndex() already exists
    //enlarge array at position e.getIndex()
    size_t pos = getIndex(e.getIndex());
    array_.at(pos).merge(e);
  } else {
    array_.push_back(e);
    setIndex();
  }
}

void ScoreData::add(const ScoreStats& e, const std::string& sent_idx)
{
  if (exists(sent_idx)) { // array at position e.getIndex() already exists
    // Enlarge array at position e.getIndex()
    size_t pos = getIndex(sent_idx);
    //          TRACE_ERR("Inserting in array " << sent_idx << std::endl);
    array_.at(pos).add(e);
    //          TRACE_ERR("size: " << size() << " -> " << a.size() << std::endl);
  } else {
    //          TRACE_ERR("Creating a new entry in the array" << std::endl);
    ScoreArray a;
    a.NumberOfScores(number_of_scores);
    a.add(e);
    a.setIndex(sent_idx);
    add(a);
    //          TRACE_ERR("size: " << size() << " -> " << a.size() << std::endl);
  }
}

bool ScoreData::check_consistency() const
{
  if (array_.size() == 0)
    return true;

  for (scoredata_t::const_iterator i = array_.begin(); i != array_.end(); ++i)
    if (!i->check_consistency()) return false;

  return true;
}

void ScoreData::setIndex()
{
  size_t j=0;
  for (scoredata_t::iterator i = array_.begin(); i !=array_.end(); i++) {
    idx2arrayname_[j]=i->getIndex();
    arrayname2idx_[i->getIndex()]=j;
    j++;
  }
}