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

Hypergraph.h « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14226fb48bed30aef5de4a1588e5b5c6d30aba08 (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2014- University of Edinburgh

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
***********************************************************************/

#ifndef MERT_HYPERGRAPH_H
#define MERT_HYPERGRAPH_H

#include <string>

#include <boost/noncopyable.hpp>
#include <boost/scoped_array.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/functional/hash/hash.hpp>
#include <boost/unordered_map.hpp>


#include "util/exception.hh"
#include "util/file_piece.hh"
#include "util/murmur_hash.hh"
#include "util/pool.hh"
#include "util/string_piece.hh"

#include "FeatureStats.h"

namespace MosesTuning
{

typedef unsigned int WordIndex;
const WordIndex kMaxWordIndex = UINT_MAX;
const FeatureStatsType kMinScore = -1e10;

template <class T> class FixedAllocator : boost::noncopyable
{
public:
  FixedAllocator() : current_(NULL), end_(NULL) {}

  void Init(std::size_t count) {
    assert(!current_);
    array_.reset(new T[count]);
    current_ = array_.get();
    end_ = current_ + count;
  }

  T &operator[](std::size_t idx) {
    return array_.get()[idx];
  }
  const T &operator[](std::size_t idx) const {
    return array_.get()[idx];
  }

  T *New() {
    T *ret = current_++;
    UTIL_THROW_IF(ret >= end_, util::Exception, "Allocating past end");
    return ret;
  }

  std::size_t Capacity() const {
    return end_ - array_.get();
  }

  std::size_t Size() const {
    return current_ - array_.get();
  }

private:
  boost::scoped_array<T> array_;
  T *current_, *end_;
};


class Vocab
{
public:
  Vocab();

  typedef std::pair<const char *const, WordIndex> Entry;

  const Entry &FindOrAdd(const StringPiece &str);

  const Entry& Bos() const {
    return bos_;
  }

  const Entry& Eos() const {
    return eos_;
  }

private:
  util::Pool piece_backing_;

  struct Hash : public std::unary_function<const char *, std::size_t> {
    std::size_t operator()(StringPiece str) const {
      return util::MurmurHashNative(str.data(), str.size());
    }
  };

  struct Equals : public std::binary_function<const char *, const char *, bool> {
    bool operator()(StringPiece first, StringPiece second) const {
      return first == second;
    }
  };

  typedef boost::unordered_map<const char *, WordIndex, Hash, Equals> Map;
  Map map_;
  Entry eos_;
  Entry bos_;

};

typedef std::vector<const Vocab::Entry*> WordVec;

class Vertex;

//Use shared pointer to save copying when we prune
typedef boost::shared_ptr<SparseVector> FeaturePtr;

/**
 * An edge has 1 head vertex, 0..n child (tail) vertices, a list of words and a feature vector.
**/
class Edge
{
public:
  Edge() {
    features_.reset(new SparseVector());
  }

  void AddWord(const Vocab::Entry *word) {
    words_.push_back(word);
  }

  void AddChild(size_t child) {
    children_.push_back(child);
  }

  void AddFeature(const StringPiece& name, FeatureStatsType value) {
    //TODO StringPiece interface
    features_->set(name.as_string(),value);
  }


  const WordVec &Words() const {
    return words_;
  }

  const FeaturePtr& Features() const {
    return features_;
  }

  void SetFeatures(const FeaturePtr& features) {
    features_ = features;
  }

  const std::vector<size_t>& Children() const {
    return children_;
  }

  FeatureStatsType GetScore(const SparseVector& weights) const {
    return inner_product(*(features_.get()), weights);
  }

private:
  // NULL for non-terminals.
  std::vector<const Vocab::Entry*> words_;
  std::vector<size_t> children_;
  boost::shared_ptr<SparseVector> features_;
};

/*
 * A vertex has 0..n incoming edges
 **/
class Vertex
{
public:
  Vertex() : sourceCovered_(0) {}

  void AddEdge(const Edge* edge) {
    incoming_.push_back(edge);
  }

  void SetSourceCovered(size_t sourceCovered) {
    sourceCovered_ = sourceCovered;
  }

  const std::vector<const Edge*>& GetIncoming() const {
    return incoming_;
  }

  size_t SourceCovered() const {
    return sourceCovered_;
  }

private:
  std::vector<const Edge*> incoming_;
  size_t sourceCovered_;
};


class Graph : boost::noncopyable
{
public:
  Graph(Vocab& vocab) : vocab_(vocab) {}

  void SetCounts(std::size_t vertices, std::size_t edges) {
    vertices_.Init(vertices);
    edges_.Init(edges);
  }

  Vocab &MutableVocab() {
    return vocab_;
  }

  Edge *NewEdge() {
    return edges_.New();
  }

  Vertex *NewVertex() {
    return vertices_.New();
  }

  const Vertex &GetVertex(std::size_t index) const {
    return vertices_[index];
  }

  Edge &GetEdge(std::size_t index) {
    return edges_[index];
  }

  /* Created a pruned copy of this graph with minEdgeCount edges. Uses
  the scores in the max-product semiring to rank edges, as suggested by
  Colin Cherry */
  void Prune(Graph* newGraph, const SparseVector& weights, size_t minEdgeCount) const;

  std::size_t VertexSize() const {
    return vertices_.Size();
  }
  std::size_t EdgeSize() const {
    return edges_.Size();
  }

  bool IsBoundary(const Vocab::Entry* word) const {
    return word->second == vocab_.Bos().second || word->second == vocab_.Eos().second;
  }

private:
  FixedAllocator<Edge> edges_;
  FixedAllocator<Vertex> vertices_;
  Vocab& vocab_;
};

class HypergraphException : public util::Exception
{
public:
  HypergraphException() {}
  ~HypergraphException() throw() {}
};


void ReadGraph(util::FilePiece &from, Graph &graph);


};

#endif