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

ScoreData.h « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb4fb30f99e92298c29bd8fe9cf0cb914004b65d (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
/*
 *  ScoreData.h
 *  met - Minimum Error Training
 *
 *  Created by Nicola Bertoldi on 13/05/08.
 *
 */

#ifndef SCORE_DATA_H
#define SCORE_DATA_H

#include <fstream>
#include <vector>
#include <iostream>
#include <stdexcept>
#include <string>
#include "ScoreArray.h"
#include "ScoreStats.h"

using namespace std;

class Scorer;

class ScoreData
{
protected:
  scoredata_t array_;
  idx2name idx2arrayname_; // map from index to name of array
  name2idx arrayname2idx_; // map from name to index of array

private:
  // Do not allow the user to instanciate without arguments.
  ScoreData() {}

  Scorer* theScorer;
  std::string score_type;
  size_t number_of_scores;

public:
  ScoreData(Scorer& sc);
  ~ScoreData() {}

  inline void clear() {
    array_.clear();
  }

  inline ScoreArray get(const std::string& idx) {
    return array_.at(getIndex(idx));
  }
  inline ScoreArray& get(size_t idx) {
    return array_.at(idx);
  }
  inline const ScoreArray& get(size_t idx) const {
    return array_.at(idx);
  }

  inline bool exists(const std::string& sent_idx) const {
    return exists(getIndex(sent_idx));
  }
  inline bool exists(int sent_idx) const {
    return (sent_idx > -1 && sent_idx < (int)array_.size()) ? true : false;
  }

  inline ScoreStats& get(size_t i, size_t j) {
    return array_.at(i).get(j);
  }
  inline const ScoreStats&  get(size_t i, size_t j) const {
    return array_.at(i).get(j);
  }

  inline std::string name() const {
    return score_type;
  }

  inline std::string name(const std::string &sctype) {
    return score_type = sctype;
  }

  void add(ScoreArray& e);
  void add(const ScoreStats& e, const std::string& sent_idx);

  inline size_t NumberOfScores() const {
    return number_of_scores;
  }
  inline size_t size() const {
    return array_.size();
  }

  void save(const std::string &file, bool bin=false);
  void save(ofstream& outFile, bool bin=false);
  inline void save(bool bin=false) {
    save("/dev/stdout", bin);
  }

  void load(ifstream& inFile);
  void load(const std::string &file);

  bool check_consistency() const;
  void setIndex();

  inline int getIndex(const std::string& idx) const {
    name2idx::const_iterator i = arrayname2idx_.find(idx);
    if (i != arrayname2idx_.end())
      return i->second;
    else
      return -1;
  }
  inline std::string getIndex(size_t idx) const {
    idx2name::const_iterator i = idx2arrayname_.find(idx);
    if (i != idx2arrayname_.end())
      throw runtime_error("there is no entry at index " + idx);
    return i->second;
  }
};

#endif  // SCORE_DATA_H