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

PhraseDictionaryMemory.cpp « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ee449172dc92922cc93cc79cb3dd484536160e2 (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
// $Id: PhraseDictionaryMemory.cpp 4365 2011-10-14 16:40:30Z heafield $
// vim:tabstop=2

/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2006 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
***********************************************************************/

#include <fstream>
#include <string>
#include <iterator>
#include <algorithm>
#include <memory>
#include <sys/stat.h>
#include <stdlib.h>
#include "util/file_piece.hh"
#include "util/tokenize_piece.hh"

#include "PhraseDictionaryMemory.h"
#include "FactorCollection.h"
#include "Word.h"
#include "Util.h"
#include "InputFileStream.h"
#include "StaticData.h"
#include "WordsRange.h"
#include "UserMessage.h"
#include "SparsePhraseDictionaryFeature.h"

using namespace std;

namespace Moses
{

namespace {
void ParserDeath(const std::string &file, size_t line_num) {
  stringstream strme;
  strme << "Syntax error at " << file << ":" << line_num;
  UserMessage::Add(strme.str());
  abort();
}
template <class It> StringPiece GrabOrDie(It &it, const std::string &file, size_t line_num) {
  if (!it) ParserDeath(file, line_num);
  return *it++;
}
} // namespace

bool PhraseDictionaryMemory::Load(const std::vector<FactorType> &input
                                  , const std::vector<FactorType> &output
                                  , const string &filePath
                                  , const vector<float> &weight
                                  , size_t tableLimit
                                  , const LMList &languageModels
                                  , float weightWP)
{
  const StaticData &staticData = StaticData::Instance();

  m_tableLimit = tableLimit;

  util::FilePiece inFile(filePath.c_str(), staticData.GetVerboseLevel() >= 1 ? &std::cerr : NULL);

  size_t line_num = 0;
  size_t numElement = NOT_FOUND; // 3=old format, 5=async format which include word alignment info
  const std::string& factorDelimiter = staticData.GetFactorDelimiter();

  Phrase sourcePhrase(0);
  std::vector<float> scv;
  scv.reserve(m_numScoreComponent);

  TargetPhraseCollection *preSourceNode = NULL;
  std::string preSourceString;

  while(true) {
    ++line_num;
    StringPiece line;
    try {
      line = inFile.ReadLine();
    } catch (util::EndOfFileException &e) {
      break;
    }

    util::TokenIter<util::MultiCharacter> pipes(line, util::MultiCharacter("|||"));
    StringPiece sourcePhraseString(GrabOrDie(pipes, filePath, line_num));
    StringPiece targetPhraseString(GrabOrDie(pipes, filePath, line_num));
    StringPiece scoreString(GrabOrDie(pipes, filePath, line_num));

    bool isLHSEmpty = !util::TokenIter<util::AnyCharacter, true>(sourcePhraseString, util::AnyCharacter(" \t"));
    if (isLHSEmpty && !staticData.IsWordDeletionEnabled()) {
      TRACE_ERR( filePath << ":" << line_num << ": pt entry contains empty source, skipping\n");
      continue;
    }
 
    //target
    std::auto_ptr<TargetPhrase> targetPhrase(new TargetPhrase(Output));
    targetPhrase->SetSourcePhrase(sourcePhrase); // TODO(bhaddow): This is a dangling pointer
    targetPhrase->CreateFromString(output, targetPhraseString, factorDelimiter);

    scv.clear();
    for (util::TokenIter<util::AnyCharacter, true> token(scoreString, util::AnyCharacter(" \t")); token; ++token) {
      char *err_ind;
      // Token is always delimited by some form of space.  Also, apparently strtod is portable but strtof isn't.  
      scv.push_back(FloorScore(TransformScore(static_cast<float>(strtod(token->data(), &err_ind)))));
      if (err_ind == token->data()) {
        stringstream strme;
        strme << "Bad number " << token << " on line " << line_num;
        UserMessage::Add(strme.str());
        abort();
      }
    }
    if (scv.size() != m_numScoreComponent) {
      stringstream strme;
      strme << "Size of scoreVector != number (" <<scv.size() << "!=" <<m_numScoreComponent<<") of score components on line " << line_num;
      UserMessage::Add(strme.str());
      abort();
    }


    
    size_t consumed = 3;
    if (pipes) {
      targetPhrase->SetAlignmentInfo(*pipes++);
      ++consumed;
    }

    ScoreComponentCollection sparse;
    if (pipes) pipes++; //counts
    if (pipes) {
      //sparse features
      SparsePhraseDictionaryFeature* spdf = 
        GetFeature()->GetSparsePhraseDictionaryFeature();
      if (spdf) {
        sparse.Assign(spdf,(pipes++)->as_string());
      }
    }


    // scv good to go sir!
    targetPhrase->SetScore(m_feature, scv, sparse, weight, weightWP, languageModels);

    // Check number of entries delimited by ||| agrees across all lines.  
    for (; pipes; ++pipes, ++consumed) {}
    if (numElement != consumed) {
      if (numElement == NOT_FOUND) {
        numElement = consumed;
      } else {
        stringstream strme;
        strme << "Syntax error at " << filePath << ":" << line_num;
        UserMessage::Add(strme.str());
        abort();
      }
    }

    // Reuse source if possible.  Otherwise, create node for it.  
    if (preSourceString == sourcePhraseString && preSourceNode) {
      preSourceNode->Add(targetPhrase.release());
    } else {
      sourcePhrase.Clear();
      sourcePhrase.CreateFromString(input, sourcePhraseString, factorDelimiter);
      preSourceNode = CreateTargetPhraseCollection(sourcePhrase);
      preSourceNode->Add(targetPhrase.release());
      preSourceString.assign(sourcePhraseString.data(), sourcePhraseString.size());
    }
  }

  // sort each target phrase collection
  m_collection.Sort(m_tableLimit);

  return true;
}

TargetPhraseCollection *PhraseDictionaryMemory::CreateTargetPhraseCollection(const Phrase &source)
{
  const size_t size = source.GetSize();

  PhraseDictionaryNode *currNode = &m_collection;
  for (size_t pos = 0 ; pos < size ; ++pos) {
    const Word& word = source.GetWord(pos);
    currNode = currNode->GetOrCreateChild(word);
    if (currNode == NULL)
      return NULL;
  }

  return currNode->CreateTargetPhraseCollection();
}

const TargetPhraseCollection *PhraseDictionaryMemory::GetTargetPhraseCollection(const Phrase &source) const
{
  // exactly like CreateTargetPhraseCollection, but don't create
  const size_t size = source.GetSize();

  const PhraseDictionaryNode *currNode = &m_collection;
  for (size_t pos = 0 ; pos < size ; ++pos) {
    const Word& word = source.GetWord(pos);
    currNode = currNode->GetChild(word);
    if (currNode == NULL)
      return NULL;
  }

  return currNode->GetTargetPhraseCollection();
}

PhraseDictionaryMemory::~PhraseDictionaryMemory()
{
}

TO_STRING_BODY(PhraseDictionaryMemory);

// friend
ostream& operator<<(ostream& out, const PhraseDictionaryMemory& phraseDict)
{
  const PhraseDictionaryNode &coll = phraseDict.m_collection;
  PhraseDictionaryNode::const_iterator iter;
  for (iter = coll.begin() ; iter != coll.end() ; ++iter) {
    const Word &word = (*iter).first;
    out << word;
  }
  return out;
}


}