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

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

#ifndef MERT_SCORE_ARRAY_H_
#define MERT_SCORE_ARRAY_H_

#include <vector>
#include <iostream>
#include <string>

#include "ScoreStats.h"

namespace MosesTuning
{

const char SCORES_TXT_BEGIN[] = "SCORES_TXT_BEGIN_0";
const char SCORES_TXT_END[] = "SCORES_TXT_END_0";
const char SCORES_BIN_BEGIN[] = "SCORES_BIN_BEGIN_0";
const char SCORES_BIN_END[] = "SCORES_BIN_END_0";

class ScoreArray
{
private:
  scorearray_t m_array;
  std::string m_score_type;
  std::size_t m_num_scores;

  // indexx to identify the utterance.
  // It can differ from the index inside the vector.
  int m_index;

public:
  ScoreArray();
  ~ScoreArray() {}

  void clear() {
    m_array.clear();
  }

  int getIndex() const {
    return m_index;
  }

  void setIndex(int value) {
    m_index = value;
  }

  ScoreStats& get(std::size_t i) {
    return m_array.at(i);
  }

  const ScoreStats& get(std::size_t i) const {
    return m_array.at(i);
  }

  void add(const ScoreStats& e) {
    m_array.push_back(e);
  }

  //ADDED BY TS
  void swap(std::size_t i, std::size_t j) {
    std::swap(m_array[i], m_array[j]);
  }

  void resize(std::size_t new_size) {
    m_array.resize(std::min(new_size, m_array.size()));
  }
  //END_ADDED

  void merge(ScoreArray& e);

  std::string name() const {
    return m_score_type;
  }

  void name(std::string &score_type) {
    m_score_type = score_type;
  }

  std::size_t size() const {
    return m_array.size();
  }

  std::size_t NumberOfScores() const {
    return m_num_scores;
  }

  void NumberOfScores(std::size_t v) {
    m_num_scores = v;
  }

  void savetxt(std::ostream* os, const std::string& score_type);
  void savebin(std::ostream* os, const std::string& score_type);
  void save(std::ostream* os, const std::string& score_type, bool bin=false);
  void save(const std::string &file, const std::string& score_type, bool bin=false);
  void save(const std::string& score_type, bool bin=false);

  void loadtxt(std::istream* is, std::size_t n);
  void loadbin(std::istream* is, std::size_t n);
  void load(std::istream* is);
  void load(const std::string &file);

  bool check_consistency() const;
};

}

#endif  // MERT_SCORE_ARRAY_H_