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

PhraseTableCompact.cpp « CompactPT « TranslationModel « moses2 « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49244df1bc87990da91bc20545eaf3513b22058b (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
#include <boost/algorithm/string/predicate.hpp>
#include <boost/thread/tss.hpp>
#include "PhraseTableCompact.h"
#include "PhraseDecoder.h"
#include "../../PhraseBased/InputPath.h"
#include "../../PhraseBased/Manager.h"
#include "../../PhraseBased/TargetPhrases.h"
#include "../../PhraseBased/TargetPhraseImpl.h"
#include "../../PhraseBased/Sentence.h"

using namespace std;
using namespace boost::algorithm;

namespace Moses2
{
bool PhraseTableCompact::s_inMemoryByDefault = false;

PhraseTableCompact::PhraseTableCompact(size_t startInd, const std::string &line)
:PhraseTable(startInd, line)
,m_inMemory(s_inMemoryByDefault)
,m_useAlignmentInfo(true)
,m_hash(10, 16)
,m_phraseDecoder(0)
{
  ReadParameters();
}

PhraseTableCompact::~PhraseTableCompact()
{

}

void PhraseTableCompact::Load(System &system)
{
  std::string tFilePath = m_path;

  std::string suffix = ".minphr";
  if (!ends_with(tFilePath, suffix)) tFilePath += suffix;
  if (!FileExists(tFilePath))
    throw runtime_error("Error: File " + tFilePath + " does not exist.");

  m_phraseDecoder
  = new PhraseDecoder(*this, &m_input, &m_output, GetNumScores());

  std::FILE* pFile = std::fopen(tFilePath.c_str() , "r");

  size_t indexSize;
  //if(m_inMemory)
  // Load source phrase index into memory
  indexSize = m_hash.Load(pFile);
  // else
  // Keep source phrase index on disk
  //indexSize = m_hash.LoadIndex(pFile);

  size_t coderSize = m_phraseDecoder->Load(pFile);

  size_t phraseSize;
  if(m_inMemory) {
    // Load target phrase collections into memory
    phraseSize = m_targetPhrasesMemory.load(pFile, false);
  }
  else {
    // Keep target phrase collections on disk
    phraseSize = m_targetPhrasesMapped.load(pFile, true);
  }

  UTIL_THROW_IF2(indexSize == 0 || coderSize == 0 || phraseSize == 0,
                 "Not successfully loaded");
}

void PhraseTableCompact::SetParameter(const std::string& key, const std::string& value)
{
  if (key == "blah") {

  }
  else {
    PhraseTable::SetParameter(key, value);
  }
}

void PhraseTableCompact::CleanUpAfterSentenceProcessing() const
{
  //if(!m_sentenceCache.get())
  //	m_sentenceCache.reset(new PhraseCache());

  m_phraseDecoder->PruneCache();
  //m_sentenceCache->clear();
}


// pb
void PhraseTableCompact::Lookup(const Manager &mgr, InputPathsBase &inputPaths) const
{
  size_t inputSize = static_cast<const Sentence&>(mgr.GetInput()).GetSize();
  InputPaths &inputPathsCast = static_cast<InputPaths&>(inputPaths);

  for (size_t i = 0; i < inputSize; ++i) {
	  for (size_t startPos = 0; startPos < inputSize; ++startPos) {
		  size_t endPos = startPos + i;
		  if (endPos >= inputSize) {
			  break;
		  }
		  InputPath *path = inputPathsCast.GetMatrix().GetValue(startPos, i);
		  //cerr << "path=" << path->Debug(mgr.system) << endl;
		  TargetPhrases *tps = Lookup(mgr, mgr.GetPool(), *path);
		  path->AddTargetPhrases(*this, tps);
	  }
  }
}

TargetPhrases *PhraseTableCompact::Lookup(const Manager &mgr, MemPool &pool,
    InputPath &inputPath) const
{
  TargetPhrases *ret = NULL;

  const Phrase<Word> &sourcePhrase = inputPath.subPhrase;
  //cerr << "sourcePhrase=" << sourcePhrase.Debug(mgr.system) << endl;

  // There is no souch source phrase if source phrase is longer than longest
  // observed source phrase during compilation
  if(sourcePhrase.GetSize() > m_phraseDecoder->GetMaxSourcePhraseLength())
    return ret;

  // Retrieve target phrase collection from phrase table
  TargetPhraseVectorPtr decodedPhraseColl
  = m_phraseDecoder->CreateTargetPhraseCollection(mgr, sourcePhrase, true, true);

  if(decodedPhraseColl != NULL && decodedPhraseColl->size()) {
    TargetPhraseVectorPtr tpv(new TargetPhraseVector(*decodedPhraseColl));
    //TargetPhraseCollection::shared_ptr  phraseColl(new TargetPhraseCollection);
    ret = new (pool.Allocate<TargetPhrases>()) TargetPhrases(pool, decodedPhraseColl->size());

    for (size_t i = 0; i < decodedPhraseColl->size(); ++i) {
      const TPCompact &tpCompact = decodedPhraseColl->at(i);
      const TargetPhraseImpl *tp = CreateTargetPhrase(mgr, tpCompact, sourcePhrase);

      ret->AddTargetPhrase(*tp);
    }

    ret->SortAndPrune(m_tableLimit);
    mgr.system.featureFunctions.EvaluateAfterTablePruning(pool, *ret, sourcePhrase);

    //cerr << "RET2=" << ret->Debug(mgr.system) << endl;
    /*
    // Cache phrase pair for clean-up or retrieval with PREnc
    const_cast<PhraseDictionaryCompact*>(this)->CacheForCleanup(phraseColl);

    return phraseColl;
    */
  }

  return ret;

}

const TargetPhraseImpl *PhraseTableCompact::CreateTargetPhrase(
		const Manager &mgr,
		const TPCompact &tpCompact,
		const Phrase<Word> &sourcePhrase) const
{
	MemPool &pool = mgr.GetPool();

	size_t size = tpCompact.words.size();
	TargetPhraseImpl *ret = new TargetPhraseImpl(pool, *this, mgr.system, size);

	// words
	for (size_t i = 0; i < size; ++i) {
		const Word &compactWord = tpCompact.words[i];
		Word &tpWord = (*ret)[i];
		tpWord = compactWord;
	}

	// scores
	Scores &scores = ret->GetScores();
	scores.Assign(mgr.system, *this, tpCompact.scores);

	// align
	ret->SetAlignTerm(tpCompact.alignment);

	// score
    mgr.system.featureFunctions.EvaluateInIsolation(pool, mgr.system, sourcePhrase, *ret);

    // Cache phrase pair for clean-up or retrieval with PREnc
    //const_cast<PhraseDictionaryCompact*>(this)->CacheForCleanup(phraseColl);

	//cerr << "ret=" << ret->Debug(mgr.system) << endl;
	return ret;
}


// scfg
void PhraseTableCompact::InitActiveChart(
    MemPool &pool,
    const SCFG::Manager &mgr,
    SCFG::InputPath &path) const
{
  UTIL_THROW2("Not implemented");
}

void PhraseTableCompact::Lookup(
    MemPool &pool,
    const SCFG::Manager &mgr,
    size_t maxChartSpan,
    const SCFG::Stacks &stacks,
    SCFG::InputPath &path) const
{
  UTIL_THROW2("Not implemented");
}

void PhraseTableCompact::LookupGivenNode(
    MemPool &pool,
    const SCFG::Manager &mgr,
    const SCFG::ActiveChartEntry &prevEntry,
    const SCFG::Word &wordSought,
    const Moses2::Hypotheses *hypos,
    const Moses2::Range &subPhraseRange,
    SCFG::InputPath &outPath) const
{
  UTIL_THROW2("Not implemented");
}

}