File size: 14,496 Bytes
c1c19ef | 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 | // -*- c++ -*-
#pragma once
#include <iostream>
#include <sstream>
#include "moses/DecodeGraph.h"
#include "moses/StaticData.h"
#include "moses/Syntax/BoundedPriorityContainer.h"
#include "moses/Syntax/CubeQueue.h"
#include "moses/Syntax/PHyperedge.h"
#include "moses/Syntax/RuleTable.h"
#include "moses/Syntax/RuleTableFF.h"
#include "moses/Syntax/SHyperedgeBundle.h"
#include "moses/Syntax/SVertex.h"
#include "moses/Syntax/SVertexRecombinationEqualityPred.h"
#include "moses/Syntax/SVertexRecombinationHasher.h"
#include "moses/Syntax/SymbolEqualityPred.h"
#include "moses/Syntax/SymbolHasher.h"
#include "DerivationWriter.h"
#include "OovHandler.h"
#include "PChart.h"
#include "RuleTrie.h"
#include "SChart.h"
namespace Moses
{
namespace Syntax
{
namespace S2T
{
template<typename Parser>
Manager<Parser>::Manager(ttasksptr const& ttask)
: Syntax::Manager(ttask)
, m_pchart(m_source.GetSize(), Parser::RequiresCompressedChart())
, m_schart(m_source.GetSize())
{ }
template<typename Parser>
void Manager<Parser>::InitializeCharts()
{
// Create a PVertex object and a SVertex object for each source word.
for (std::size_t i = 0; i < m_source.GetSize(); ++i) {
const Word &terminal = m_source.GetWord(i);
// PVertex
PVertex tmp(Range(i,i), terminal);
PVertex &pvertex = m_pchart.AddVertex(tmp);
// SVertex
boost::shared_ptr<SVertex> v(new SVertex());
v->best = 0;
v->pvertex = &pvertex;
SChart::Cell &scell = m_schart.GetCell(i,i);
SVertexStack stack(1, v);
SChart::Cell::TMap::value_type x(terminal, stack);
scell.terminalStacks.insert(x);
}
}
template<typename Parser>
void Manager<Parser>::InitializeParsers(PChart &pchart,
std::size_t ruleLimit)
{
const std::vector<RuleTableFF*> &ffs = RuleTableFF::Instances();
const std::vector<DecodeGraph*> &graphs =
StaticData::Instance().GetDecodeGraphs();
UTIL_THROW_IF2(ffs.size() != graphs.size(),
"number of RuleTables does not match number of decode graphs");
for (std::size_t i = 0; i < ffs.size(); ++i) {
RuleTableFF *ff = ffs[i];
std::size_t maxChartSpan = graphs[i]->GetMaxChartSpan();
// This may change in the future, but currently we assume that every
// RuleTableFF is associated with a static, file-based rule table of
// some sort and that the table should have been loaded into a RuleTable
// by this point.
const RuleTable *table = ff->GetTable();
assert(table);
RuleTable *nonConstTable = const_cast<RuleTable*>(table);
boost::shared_ptr<Parser> parser;
typename Parser::RuleTrie *trie =
dynamic_cast<typename Parser::RuleTrie*>(nonConstTable);
assert(trie);
parser.reset(new Parser(pchart, *trie, maxChartSpan));
m_parsers.push_back(parser);
}
// Check for OOVs and synthesize an additional rule trie + parser if
// necessary.
m_oovs.clear();
std::size_t maxOovWidth = 0;
FindOovs(pchart, m_oovs, maxOovWidth);
if (!m_oovs.empty()) {
// FIXME Add a hidden RuleTableFF for unknown words(?)
OovHandler<typename Parser::RuleTrie> oovHandler(*ffs[0]);
m_oovRuleTrie = oovHandler.SynthesizeRuleTrie(m_oovs.begin(), m_oovs.end());
// Create a parser for the OOV rule trie.
boost::shared_ptr<Parser> parser(
new Parser(pchart, *m_oovRuleTrie, maxOovWidth));
m_parsers.push_back(parser);
}
}
// Find the set of OOVs for this input. This function assumes that the
// PChart argument has already been initialized from the input.
template<typename Parser>
void Manager<Parser>::FindOovs(const PChart &pchart, boost::unordered_set<Word> &oovs,
std::size_t maxOovWidth)
{
// Get the set of RuleTries.
std::vector<const RuleTrie *> tries;
const std::vector<RuleTableFF*> &ffs = RuleTableFF::Instances();
for (std::size_t i = 0; i < ffs.size(); ++i) {
const RuleTableFF *ff = ffs[i];
if (ff->GetTable()) {
const RuleTrie *trie = dynamic_cast<const RuleTrie*>(ff->GetTable());
assert(trie); // FIXME
tries.push_back(trie);
}
}
// For every sink vertex in pchart (except for <s> and </s>), check whether
// the word has a preterminal rule in any of the rule tables. If not then
// add it to the OOV set.
oovs.clear();
maxOovWidth = 0;
// Assume <s> and </s> have been added at sentence boundaries, so skip
// cells starting at position 0 and ending at the last position.
for (std::size_t i = 1; i < pchart.GetWidth()-1; ++i) {
for (std::size_t j = i; j < pchart.GetWidth()-1; ++j) {
std::size_t width = j-i+1;
const PChart::Cell::TMap &map = pchart.GetCell(i,j).terminalVertices;
for (PChart::Cell::TMap::const_iterator p = map.begin();
p != map.end(); ++p) {
const Word &word = p->first;
assert(!word.IsNonTerminal());
bool found = false;
for (std::vector<const RuleTrie *>::const_iterator q = tries.begin();
q != tries.end(); ++q) {
const RuleTrie *trie = *q;
if (trie->HasPreterminalRule(word)) {
found = true;
break;
}
}
if (!found) {
oovs.insert(word);
maxOovWidth = std::max(maxOovWidth, width);
}
}
}
}
}
template<typename Parser>
void Manager<Parser>::Decode()
{
// Get various pruning-related constants.
const std::size_t popLimit = options()->cube.pop_limit;
const std::size_t ruleLimit = options()->syntax.rule_limit;
const std::size_t stackLimit = options()->search.stack_size;
// Initialise the PChart and SChart.
InitializeCharts();
// Initialize the parsers.
InitializeParsers(m_pchart, ruleLimit);
// Create a callback to process the PHyperedges produced by the parsers.
typename Parser::CallbackType callback(m_schart, ruleLimit);
// Visit each cell of PChart in right-to-left depth-first order.
std::size_t size = m_source.GetSize();
for (int start = size-1; start >= 0; --start) {
for (std::size_t width = 1; width <= size-start; ++width) {
std::size_t end = start + width - 1;
//PChart::Cell &pcell = m_pchart.GetCell(start, end);
SChart::Cell &scell = m_schart.GetCell(start, end);
Range range(start, end);
// Call the parsers to generate PHyperedges for this span and convert
// each one to a SHyperedgeBundle (via the callback). The callback
// prunes the SHyperedgeBundles and keeps the best ones (up to ruleLimit).
callback.InitForRange(range);
for (typename std::vector<boost::shared_ptr<Parser> >::iterator
p = m_parsers.begin(); p != m_parsers.end(); ++p) {
(*p)->EnumerateHyperedges(range, callback);
}
// Retrieve the (pruned) set of SHyperedgeBundles from the callback.
const BoundedPriorityContainer<SHyperedgeBundle> &bundles =
callback.GetContainer();
// Use cube pruning to extract SHyperedges from SHyperedgeBundles.
// Collect the SHyperedges into buffers, one for each category.
CubeQueue cubeQueue(bundles.Begin(), bundles.End());
std::size_t count = 0;
typedef boost::unordered_map<Word, std::vector<SHyperedge*>,
SymbolHasher, SymbolEqualityPred > BufferMap;
BufferMap buffers;
while (count < popLimit && !cubeQueue.IsEmpty()) {
SHyperedge *hyperedge = cubeQueue.Pop();
// BEGIN{HACK}
// The way things currently work, the LHS of each hyperedge is not
// determined until just before the point of its creation, when a
// target phrase is selected from the list of possible phrases (which
// happens during cube pruning). The cube pruning code doesn't (and
// shouldn't) know about the contents of PChart and so creation of
// the PVertex is deferred until this point.
const Word &lhs = hyperedge->label.translation->GetTargetLHS();
hyperedge->head->pvertex = &m_pchart.AddVertex(PVertex(range, lhs));
// END{HACK}
buffers[lhs].push_back(hyperedge);
++count;
}
// Recombine SVertices and sort into stacks.
for (BufferMap::const_iterator p = buffers.begin(); p != buffers.end();
++p) {
const Word &category = p->first;
const std::vector<SHyperedge*> &buffer = p->second;
std::pair<SChart::Cell::NMap::Iterator, bool> ret =
scell.nonTerminalStacks.Insert(category, SVertexStack());
assert(ret.second);
SVertexStack &stack = ret.first->second;
RecombineAndSort(buffer, stack);
}
// Prune stacks.
if (stackLimit > 0) {
for (SChart::Cell::NMap::Iterator p = scell.nonTerminalStacks.Begin();
p != scell.nonTerminalStacks.End(); ++p) {
SVertexStack &stack = p->second;
if (stack.size() > stackLimit) {
stack.resize(stackLimit);
}
}
}
// Prune the PChart cell for this span by removing vertices for
// categories that don't occur in the SChart.
// Note: see HACK above. Pruning the chart isn't currently necessary.
// PrunePChart(scell, pcell);
}
}
}
template<typename Parser>
const SHyperedge *Manager<Parser>::GetBestSHyperedge() const
{
const SChart::Cell &cell = m_schart.GetCell(0, m_source.GetSize()-1);
const SChart::Cell::NMap &stacks = cell.nonTerminalStacks;
if (stacks.Size() == 0) {
return 0;
}
assert(stacks.Size() == 1);
const std::vector<boost::shared_ptr<SVertex> > &stack = stacks.Begin()->second;
// TODO Throw exception if stack is empty? Or return 0?
return stack[0]->best;
}
template<typename Parser>
void Manager<Parser>::ExtractKBest(
std::size_t k,
std::vector<boost::shared_ptr<KBestExtractor::Derivation> > &kBestList,
bool onlyDistinct) const
{
kBestList.clear();
if (k == 0 || m_source.GetSize() == 0) {
return;
}
// Get the top-level SVertex stack.
const SChart::Cell &cell = m_schart.GetCell(0, m_source.GetSize()-1);
const SChart::Cell::NMap &stacks = cell.nonTerminalStacks;
if (stacks.Size() == 0) {
return;
}
assert(stacks.Size() == 1);
const std::vector<boost::shared_ptr<SVertex> > &stack = stacks.Begin()->second;
// TODO Throw exception if stack is empty? Or return 0?
KBestExtractor extractor;
if (!onlyDistinct) {
// Return the k-best list as is, including duplicate translations.
extractor.Extract(stack, k, kBestList);
return;
}
// Determine how many derivations to extract. If the k-best list is
// restricted to distinct translations then this limit should be bigger
// than k. The k-best factor determines how much bigger the limit should be,
// with 0 being 'unlimited.' This actually sets a large-ish limit in case
// too many translations are identical.
const StaticData &staticData = StaticData::Instance();
const std::size_t nBestFactor = staticData.options()->nbest.factor;
std::size_t numDerivations = (nBestFactor == 0) ? k*1000 : k*nBestFactor;
// Extract the derivations.
KBestExtractor::KBestVec bigList;
bigList.reserve(numDerivations);
extractor.Extract(stack, numDerivations, bigList);
// Copy derivations into kBestList, skipping ones with repeated translations.
std::set<Phrase> distinct;
for (KBestExtractor::KBestVec::const_iterator p = bigList.begin();
kBestList.size() < k && p != bigList.end(); ++p) {
boost::shared_ptr<KBestExtractor::Derivation> derivation = *p;
Phrase translation = KBestExtractor::GetOutputPhrase(*derivation);
if (distinct.insert(translation).second) {
kBestList.push_back(derivation);
}
}
}
template<typename Parser>
void Manager<Parser>::PrunePChart(const SChart::Cell &scell,
PChart::Cell &pcell)
{
/* FIXME
PChart::Cell::VertexMap::iterator p = pcell.vertices.begin();
while (p != pcell.vertices.end()) {
const Word &category = p->first;
if (scell.stacks.find(category) == scell.stacks.end()) {
PChart::Cell::VertexMap::iterator q = p++;
pcell.vertices.erase(q);
} else {
++p;
}
}
*/
}
template<typename Parser>
void Manager<Parser>::RecombineAndSort(const std::vector<SHyperedge*> &buffer,
SVertexStack &stack)
{
// Step 1: Create a map containing a single instance of each distinct vertex
// (where distinctness is defined by the state value). The hyperedges'
// head pointers are updated to point to the vertex instances in the map and
// any 'duplicate' vertices are deleted.
// TODO Set?
typedef boost::unordered_map<SVertex *, SVertex *,
SVertexRecombinationHasher,
SVertexRecombinationEqualityPred> Map;
Map map;
for (std::vector<SHyperedge*>::const_iterator p = buffer.begin();
p != buffer.end(); ++p) {
SHyperedge *h = *p;
SVertex *v = h->head;
assert(v->best == h);
assert(v->recombined.empty());
std::pair<Map::iterator, bool> result = map.insert(Map::value_type(v, v));
if (result.second) {
continue; // v's recombination value hasn't been seen before.
}
// v is a duplicate (according to the recombination rules).
// Compare the score of h against the score of the best incoming hyperedge
// for the stored vertex.
SVertex *storedVertex = result.first->second;
if (h->label.futureScore > storedVertex->best->label.futureScore) {
// h's score is better.
storedVertex->recombined.push_back(storedVertex->best);
storedVertex->best = h;
} else {
storedVertex->recombined.push_back(h);
}
h->head->best = 0;
delete h->head;
h->head = storedVertex;
}
// Step 2: Copy the vertices from the map to the stack.
stack.clear();
stack.reserve(map.size());
for (Map::const_iterator p = map.begin(); p != map.end(); ++p) {
stack.push_back(boost::shared_ptr<SVertex>(p->first));
}
// Step 3: Sort the vertices in the stack.
std::sort(stack.begin(), stack.end(), SVertexStackContentOrderer());
}
template<typename Parser>
void Manager<Parser>::OutputDetailedTranslationReport(
OutputCollector *collector) const
{
const SHyperedge *best = GetBestSHyperedge();
if (best == NULL || collector == NULL) {
return;
}
long translationId = m_source.GetTranslationId();
std::ostringstream out;
DerivationWriter::Write(*best, translationId, out);
collector->Write(translationId, out.str());
}
} // S2T
} // Syntax
} // Moses
|