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

TTables.cpp « src « mgizapp - github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd62310de7cd270e5a5fe6638d51d0d29ea95870 (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
/*

EGYPT Toolkit for Statistical Machine Translation
Written by Yaser Al-Onaizan, Jan Curin, Michael Jahr, Kevin Knight, John Lafferty, Dan Melamed, David Purdy, Franz Och, Noah Smith, and David Yarowsky.

This program 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 2
of the License, or (at your option) any later version.

This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
USA.

*/
#include "TTables.h"
#include "Parameter.h"
#include<iostream>
#include <fstream>

GLOBAL_PARAMETER(float,PROB_CUTOFF,"PROB CUTOFF","Probability cutoff threshold for lexicon probabilities",PARLEV_OPTHEUR,1e-7);
GLOBAL_PARAMETER2(float, COUNTINCREASE_CUTOFF,"COUNTINCREASE CUTOFF","countCutoff","Counts increment cutoff threshold",PARLEV_OPTHEUR,1e-6);


/* ------------------ Method Definiotns for Class tmodel --------------------*/


// To output to STDOUT, submit filename as NULL
template <class COUNT, class PROB>
void tmodel<COUNT, PROB>::printCountTable(const char *filename,
    const Vector<WordEntry>& evlist,
    const Vector<WordEntry>& fvlist,
    const bool actual) const
{
  ostream *tof;

  if(filename)
    tof = new ofstream(filename);
  else
    tof = & cout;

  ostream &of = *tof;
  /*  for(unsigned int i=0;i<es.size()-1;++i)
  for(unsigned int j=es[i];j<es[i+1];++j)
  {
  const CPPair&x=fs[j].second;
  WordIndex e=i,f=fs[j].first;
  if( actual )
  of << evlist[e].word << ' ' << fvlist[f].word << ' ' << x.prob << '\n';
  else
  of << e << ' ' << f << ' ' << x.prob << '\n';
  }*/
  for(unsigned int i=0; i<lexmat.size(); ++i) {
    if( lexmat[i] ) {
      for(unsigned int j=0; j<lexmat[i]->size(); ++j) {
        const CPPair&x=(*lexmat[i])[j].second;
        WordIndex e=i,f=(*lexmat[i])[j].first;
        if( x.prob>MINCOUNTINCREASE ) {
          if( actual ) {
            of << evlist[e].word << ' ' << fvlist[f].word << ' ' << x.count << '\n';
          } else {
            of << e << ' ' << f << ' ' << x.count << '\n';
          }
        }
      }
    }
  }

  if(filename) {
    ((ofstream*)tof)->close();
    delete tof;
  }
}

template <class COUNT, class PROB>
void tmodel<COUNT, PROB>::printProbTable(const char *filename,
    const Vector<WordEntry>& evlist,
    const Vector<WordEntry>& fvlist,
    const bool actual) const
{
  ofstream of(filename);
  /*  for(unsigned int i=0;i<es.size()-1;++i)
  for(unsigned int j=es[i];j<es[i+1];++j)
  {
  const CPPair&x=fs[j].second;
  WordIndex e=i,f=fs[j].first;
  if( actual )
  of << evlist[e].word << ' ' << fvlist[f].word << ' ' << x.prob << '\n';
  else
  of << e << ' ' << f << ' ' << x.prob << '\n';
  }*/
  for(unsigned int i=0; i<lexmat.size(); ++i) {
    if( lexmat[i] ) {
      for(unsigned int j=0; j<lexmat[i]->size(); ++j) {
        const CPPair&x=(*lexmat[i])[j].second;
        WordIndex e=i,f=(*lexmat[i])[j].first;
        if( x.prob>PROB_SMOOTH ) {
          if( actual ) {
            of << evlist[e].word << ' ' << fvlist[f].word << ' ' << x.prob << '\n';
          } else {
            of << e << ' ' << f << ' ' << x.prob << '\n';
          }
        }
      }
    }
  }
}

template <class COUNT, class PROB>
void tmodel<COUNT, PROB>::printProbTableInverse(const char *,
    const Vector<WordEntry>&,
    const Vector<WordEntry>&,
    const double,
    const double,
    const bool ) const
{
}
template <class COUNT, class PROB>
void tmodel<COUNT, PROB>::normalizeTable(const vcbList&, const vcbList&, int)
{
  for(unsigned int i=0; i<lexmat.size(); ++i) {
    double c=0.0;
    if( lexmat[i] ) {
      unsigned int lSize=lexmat[i]->size();
      for(unsigned int j=0; j<lSize; ++j)
        c+=(*lexmat[i])[j].second.count;
      for(unsigned int j=0; j<lSize; ++j)  {
        if( c==0 )
          (*lexmat[i])[j].second.prob=1.0/(lSize);
        else
          (*lexmat[i])[j].second.prob=(*lexmat[i])[j].second.count/c;
        (*lexmat[i])[j].second.count=0;
      }
    }
  }
}

template <class COUNT, class PROB>
bool tmodel<COUNT, PROB>::readProbTable(const char *filename)
{
  /* This function reads the t table from a file.
   Each line is of the format:  source_word_id target_word_id p(target_word|source_word)
   This is the inverse operation of the printTable function.
   NAS, 7/11/99
   */
  ifstream inf(filename);
  cerr << "Reading t prob. table from " << filename << "\n";
  if (!inf) {
    cerr << "\nERROR: Cannot open " << filename << "\n";
    return false;
  }
  WordIndex src_id, trg_id;
  PROB prob;
  int nEntry=0;
  while (inf >> src_id >> trg_id >> prob) {
    insert(src_id, trg_id, 0.0, prob);
    nEntry++;
  }
  cerr << "Read " << nEntry << " entries in prob. table.\n";
  return true;
}



template class tmodel<COUNT,PROB> ;

/* ---------------- End of Method Definitions of class tmodel ---------------*/