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

nl-probmodel.h « include « rvtl « hhmm « synlm « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2dcff7b3068f85d175801ea77485a776db98e780 (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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
///////////////////////////////////////////////////////////////////////////////
//                                                                           //
// This file is part of ModelBlocks. Copyright 2009, ModelBlocks developers. //
//                                                                           //
//    ModelBlocks is free software: you can redistribute it and/or modify    //
//    it under the terms of the GNU General Public License as published by   //
//    the Free Software Foundation, either version 3 of the License, or      //
//    (at your option) any later version.                                    //
//                                                                           //
//    ModelBlocks 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 General Public License for more details.                           //
//                                                                           //
//    You should have received a copy of the GNU General Public License      //
//    along with ModelBlocks.  If not, see <http://www.gnu.org/licenses/>.   //
//                                                                           //
//    ModelBlocks developers designate this particular file as subject to    //
//    the "Moses" exception as provided by ModelBlocks developers in         //
//    the LICENSE file that accompanies this code.                           //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#ifndef _NL_PROBMODEL__
#define _NL_PROBMODEL__

#include "nl-prob.h"

///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
//  XDModel
//
////////////////////////////////////////////////////////////////////////////////

template<class Y,class P> 
class Generic1DModel {
 public:
  typedef Y  RVType;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setNext  ( const Y& ) const { assert(false); return false; }   // if you need it, you have to write it
  P    getProb  ( const Y& ) const { assert(false); return 0.0; }     // if you need it, you have to write it
};

////////////////////////////////////////////////////////////

template<class Y,class X1,class P> 
class Generic2DModel {
 public:
  typedef Y  RVType;
  typedef X1 Dep1Type;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setNext  ( const Y& ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setFirst ( const Y&, const X1& x1 ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setNext  ( const Y&, const X1& x1 ) const { assert(false); return false; }   // if you need it, you have to write it
  P    getProb  ( const Y&, const X1& x1 ) const { assert(false); return 0.0; }     // if you need it, you have to write it
};

////////////////////////////////////////////////////////////

template<class Y,class X1,class X2,class P> 
class Generic3DModel {
 public:
  typedef Y  RVType;
  typedef X1 Dep1Type;
  typedef X2 Dep2Type;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setNext  ( const Y& ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setFirst ( const Y&, const X1& x1, const X2& x2 ) const { assert(false); return false; }   // if you need it, you have to write it
  bool setNext  ( const Y&, const X1& x1, const X2& x2 ) const { assert(false); return false; }   // if you need it, you have to write it
  P    getProb  ( const Y&, const X1& x1, const X2& x2 ) const { assert(false); return 0.0; }     // if you need it, you have to write it
};

////////////////////////////////////////////////////////////

template<class Y,class X1,class X2,class X3,class P> 
class Generic4DModel {
 public:
  typedef Y  RVType;
  typedef X1 Dep1Type;
  typedef X2 Dep2Type;
  typedef X3 Dep3Type;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }
  bool setNext  ( const Y& ) const { assert(false); return false; }
  bool setFirst ( const Y&, const X1& x1, const X2& x2, const X3& x3 ) const { assert(false); return false; }
  bool setNext  ( const Y&, const X1& x1, const X2& x2, const X3& x3 ) const { assert(false); return false; }
  P    getProb  ( const Y&, const X1& x1, const X2& x2, const X3& x3 ) const { assert(false); return 0.0; }
};

////////////////////////////////////////////////////////////

template<class Y,class X1,class X2,class X3,class X4,class P> 
class Generic5DModel {
 public:
  typedef Y  RVType;
  typedef X1 Dep1Type;
  typedef X2 Dep2Type;
  typedef X3 Dep3Type;
  typedef X4 Dep4Type;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }
  bool setNext  ( const Y& ) const { assert(false); return false; }
  bool setFirst ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4 ) const { assert(false); return false; }
  bool setNext  ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4 ) const { assert(false); return false; }
  P    getProb  ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4 ) const { assert(false); return 0.0; }
};

////////////////////////////////////////////////////////////

template<class Y,class X1,class X2,class X3,class X4,class X5,class P> 
class Generic6DModel {
 public:
  typedef Y  RVType;
  typedef X1 Dep1Type;
  typedef X2 Dep2Type;
  typedef X3 Dep3Type;
  typedef X4 Dep4Type;
  typedef X5 Dep5Type;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }
  bool setNext  ( const Y& ) const { assert(false); return false; }
  bool setFirst ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5 ) const { assert(false); return false; }
  bool setNext  ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5 ) const { assert(false); return false; }
  P    getProb  ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5 ) const { assert(false); return 0.0; }
};

////////////////////////////////////////////////////////////

template<class Y,class X1,class X2,class X3,class X4,class X5,class X6,class P> 
class Generic7DModel {
 public:
  typedef Y  RVType;
  typedef X1 Dep1Type;
  typedef X2 Dep2Type;
  typedef X3 Dep3Type;
  typedef X4 Dep4Type;
  typedef X5 Dep5Type;
  typedef X6 Dep6Type;
  typedef P  ProbType;
  bool setFirst ( const Y& ) const { assert(false); return false; }
  bool setNext  ( const Y& ) const { assert(false); return false; }
  bool setFirst ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5, const X5& x6 ) const { assert(false); return false; }
  bool setNext  ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5, const X5& x6 ) const { assert(false); return false; }
  P    getProb  ( const Y&, const X1& x1, const X2& x2, const X3& x3, const X4& x4, const X5& x5, const X5& x6 ) const { assert(false); return 0.0; }
};


///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
//  ModeledXDRV
//
////////////////////////////////////////////////////////////////////////////////

template<class M, M& m>
class Modeled1DRV : public M::RVType {
 public:
  // Constructor / destructor methods...
  Modeled1DRV ( )                        {  }
  //Modeled1DRV ( int i )                  { M::RVType::operator=(i); }
  Modeled1DRV ( string& s )        { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Extraction methods...
  typename M::ProbType getProb ( ) const { return m.getProb(*this); }
};

////////////////////////////////////////////////////////////

template<class M, M& m>
class Modeled2DRV : public M::RVType {
 public:
  typedef M Model;
  // Constructor / destructor methods...
  Modeled2DRV ( )                                              { }
  // Modeled2DRV ( int i )                                        { M::RVType::operator=(i); }
  Modeled2DRV ( const Modeled2DRV<M,m>& mrv ) : M::RVType(mrv) { }
  Modeled2DRV ( const typename M::RVType& x )                  { M::RVType::operator=(x); }
  Modeled2DRV ( string& s )                                    { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Specification methods...
  bool setFirst           ( )                                { return M::RVType::setFirst(); }
  bool setNext            ( )                                { return M::RVType::setNext();  }
  bool setFirst           ( const typename M::Dep1Type& x1 ) { return m.setFirst(*this,x1);  }
  bool setFirstConsistent ( const typename M::Dep1Type& x1 ) { return m.setFirstConsistent(*this,x1);  }
  bool setNext            ( const typename M::Dep1Type& x1 ) { return m.setNext (*this,x1);  }
  bool setSample          ( const typename M::Dep1Type& x1 ) { return m.setSample(*this,x1); }
  // Extraction methods...
  typename M::ProbType getProb ( const typename M::Dep1Type& x1 ) const { return m.getProb(*this,x1); }
};

////////////////////////////////////////////////////////////

template<class M, M& m>
class DetermModeled2DRV : public Modeled2DRV<M,m> {
 public:
  DetermModeled2DRV ( const typename M::Dep1Type& x1 )               { m.setFirst(*this,x1); assert(LogProb(1.0)==m.getProb(*this,x1)); }
};

////////////////////////////////////////////////////////////

template<class M, M& m>
class Modeled3DRV : public M::RVType {
 public:
  // Constructor / destructor methods...
  Modeled3DRV ( )                        {  }
  //Modeled3DRV ( int i )                  { M::RVType::operator=(i); }
  Modeled3DRV ( string& s )        { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Specification methods...
  bool setFirst           ( )                                                                { return M::RVType::setFirst();    }
  bool setNext            ( )                                                                { return M::RVType::setNext();     }
  bool setFirst           ( const typename M::Dep1Type& x1, const typename M::Dep2Type& x2 ) { return m.setFirst(*this,x1,x2);  }
  bool setFirstConsistent ( const typename M::Dep1Type& x1, const typename M::Dep2Type& x2 ) { return m.setFirstConsistent(*this,x1,x2);  }
  bool setNext            ( const typename M::Dep1Type& x1, const typename M::Dep2Type& x2 ) { return m.setNext (*this,x1,x2);  }
  bool setSample          ( const typename M::Dep1Type& x1, const typename M::Dep2Type& x2 ) { return m.setSample(*this,x1,x2); }
  // Extraction methods...
  typename M::ProbType getProb ( const typename M::Dep1Type& x1,
                                 const typename M::Dep2Type& x2 ) const { return m.getProb(*this,x1,x2); }
};

////////////////////////////////////////////////////////////

template<class M, M& m>
class Modeled4DRV : public M::RVType {
 public:
  // Constructor / destructor methods...
  Modeled4DRV ( )                        {  }
  //Modeled4DRV ( int i )                  { M::RVType::operator=(i); }
  Modeled4DRV ( string& s )        { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Specification methods...
  bool setFirst           ( )                                      { return M::RVType::setFirst(); }
  bool setNext            ( )                                      { return M::RVType::setNext();  }
  bool setFirst           ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3 )       { return m.setFirst(*this,x1,x2,x3); }
  bool setFirstConsistent ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3 )       { return m.setFirstConsistent(*this,x1,x2,x3); }
  bool setNext            ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3 )       { return m.setNext (*this,x1,x2,x3); }
  bool setSample          ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3 )       { return m.setSample(*this,x1,x2,x3); }
  // Extraction methods...
  typename M::ProbType getProb ( const typename M::Dep1Type& x1,
                                 const typename M::Dep2Type& x2,
                                 const typename M::Dep3Type& x3 ) const { return m.getProb(*this,x1,x2,x3); }
};

////////////////////////////////////////////////////////////

template<class M, M& m>
class Modeled5DRV : public M::RVType {
 public:
  // Constructor / destructor methods...
  Modeled5DRV ( )                        {  }
  //Modeled5DRV ( int i )                  { M::RVType::operator=(i); }
  Modeled5DRV ( string& s )        { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Specification methods...
  bool setFirst           ( )                                      { return M::RVType::setFirst(); }
  bool setNext            ( )                                      { return M::RVType::setNext();  }
  bool setFirst           ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4 )       { return m.setFirst(*this,x1,x2,x3,x4); }
  bool setFirstConsistent ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4 )       { return m.setFirstConsistent(*this,x1,x2,x3,x4); }
  bool setNext            ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4 )       { return m.setNext (*this,x1,x2,x3,x4); }
  bool setSample           (const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4 )       { return m.setSample(*this,x1,x2,x3,x4); }
  // Extraction methods...
  typename M::ProbType getProb ( const typename M::Dep1Type& x1,
                                 const typename M::Dep2Type& x2,
                                 const typename M::Dep3Type& x3,
                                 const typename M::Dep4Type& x4 ) const { return m.getProb(*this,x1,x2,x3,x4); }
  
};

///////////////////////////////////////////////////////////////////////////////
template<class M, M& m>
class Modeled6DRV : public M::RVType {
 public:
  // Constructor / destructor methods...
  Modeled6DRV ( )                        {  }
  //Modeled5DRV ( int i )                  { M::RVType::operator=(i); }
  Modeled6DRV ( string& s )        { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Specification methods...
  bool setFirst           ( )                                      { return M::RVType::setFirst(); }
  bool setNext            ( )                                      { return M::RVType::setNext();  }
  bool setFirst           ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5 )       { return m.setFirst(*this,x1,x2,x3,x4,x5); }
  bool setFirstConsistent ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5 )       { return m.setFirstConsistent(*this,x1,x2,x3,x4,x5); }
  bool setNext            ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5 )       { return m.setNext (*this,x1,x2,x3,x4,x5); }
  bool setSample           (const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5 )       { return m.setSample(*this,x1,x2,x3,x4,x5); }
  // Extraction methods...
  typename M::ProbType getProb ( const typename M::Dep1Type& x1,
                                 const typename M::Dep2Type& x2,
                                 const typename M::Dep3Type& x3,
                                 const typename M::Dep4Type& x4,
                                 const typename M::Dep5Type& x5 ) const { return m.getProb(*this,x1,x2,x3,x4,x5); }
  
};

///////////////////////////////////////////////////////////////////////////////
template<class M, M& m>
class Modeled7DRV : public M::RVType {
 public:
  // Constructor / destructor methods...
  Modeled7DRV ( )                        {  }
  //Modeled5DRV ( int i )                  { M::RVType::operator=(i); }
  Modeled7DRV ( string& s )        { M::RVType::operator=(s); }
  // Static specification methods...
  static M&       setModel ( ) { return m; }
  // Static extraction methods...
  static const M& getModel ( ) { return m; }
  // Specification methods...
  bool setFirst           ( )                                      { return M::RVType::setFirst(); }
  bool setNext            ( )                                      { return M::RVType::setNext();  }
  bool setFirst           ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5,
                            const typename M::Dep6Type& x6 )       { return m.setFirst(*this,x1,x2,x3,x4,x5,x6); }
  bool setFirstConsistent ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5,
                            const typename M::Dep6Type& x6 )       { return m.setFirstConsistent(*this,x1,x2,x3,x4,x5,x6); }
  bool setNext            ( const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5,
                            const typename M::Dep6Type& x6 )       { return m.setNext (*this,x1,x2,x3,x4,x5,x6); }
  bool setSample           (const typename M::Dep1Type& x1,
                            const typename M::Dep2Type& x2,
                            const typename M::Dep3Type& x3,
                            const typename M::Dep4Type& x4,
                            const typename M::Dep5Type& x5,
                            const typename M::Dep6Type& x6 )       { return m.setSample(*this,x1,x2,x3,x4,x5,x6); }
  // Extraction methods...
  typename M::ProbType getProb ( const typename M::Dep1Type& x1,
                                 const typename M::Dep2Type& x2,
                                 const typename M::Dep3Type& x3,
                                 const typename M::Dep4Type& x4,
                                 const typename M::Dep5Type& x5,
                                 const typename M::Dep6Type& x6 ) const { return m.getProb(*this,x1,x2,x3,x4,x5,x6); }
  
};

///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
//  PrecomputedModeledXDRV
//
////////////////////////////////////////////////////////////////////////////////

template<class M, M& m, class S>
class PrecomputedModeled2DRV : public Modeled2DRV<M,m> {
 private:
  SafeArray1D<typename M::Dep1Type,typename M::ProbType> apr;
  void precompute ( ) { apr.init(M::Dep1Type::getDomain().getSize());
                        typename M::Dep1Type x1;
                        for(bool b=x1.setFirst(); b; b=x1.setNext()) apr.set(x1)=m.getProb(*this,x1); }
 public:
  typename M::ProbType getProb ( const typename M::Dep1Type& x1 ) const { return apr.get(x1); }
  typename M::RVType   set     ( const S s ) { M::RVType::set(s); precompute(); return *this; }
};
//template<class M, M& m, class S> SafeArray1D<typename M::Dep1Type,typename M::ProbType> PrecomputedModeled2DRV<M,m,S>::apr;


#endif /* _NL_PROBMODEL__ */