mosesdecoder/moses/TranslationModel/RuleTable/PhraseDictionaryOnDisk.cpp

225 lines
7.4 KiB
C++
Raw Normal View History

2013-05-29 21:16:15 +04:00
// vim:tabstop=2
/***********************************************************************
Moses - factored phrase-based language decoder
Copyright (C) 2010 Hieu Hoang
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 "PhraseDictionaryOnDisk.h"
2012-11-12 23:56:18 +04:00
#include "moses/InputFileStream.h"
#include "moses/StaticData.h"
#include "moses/TargetPhraseCollection.h"
#include "moses/InputPath.h"
2012-11-27 21:23:31 +04:00
#include "moses/TranslationModel/CYKPlusParser/DotChartOnDisk.h"
#include "moses/TranslationModel/CYKPlusParser/ChartRuleLookupManagerOnDisk.h"
2013-07-05 13:52:12 +04:00
#include "OnDiskPt/OnDiskWrapper.h"
#include "OnDiskPt/Word.h"
using namespace std;
namespace Moses
{
PhraseDictionaryOnDisk::PhraseDictionaryOnDisk(const std::string &line)
: MyBase(line, true)
, m_maxSpanDefault(NOT_FOUND)
, m_maxSpanLabelled(NOT_FOUND)
2013-06-26 20:19:09 +04:00
{
ReadParameters();
}
PhraseDictionaryOnDisk::~PhraseDictionaryOnDisk()
{
}
void PhraseDictionaryOnDisk::Load()
{
SetFeaturesToApply();
}
ChartRuleLookupManager *PhraseDictionaryOnDisk::CreateRuleLookupManager(
const ChartParser &parser,
const ChartCellCollectionBase &cellCollection,
std::size_t /*maxChartSpan*/)
{
return new ChartRuleLookupManagerOnDisk(parser, cellCollection, *this,
2013-05-21 15:47:26 +04:00
GetImplementation(),
m_input,
m_output);
}
2013-03-05 18:02:55 +04:00
OnDiskPt::OnDiskWrapper &PhraseDictionaryOnDisk::GetImplementation()
{
OnDiskPt::OnDiskWrapper* dict;
dict = m_implementation.get();
2013-11-23 00:27:46 +04:00
UTIL_THROW_IF2(dict == NULL, "Dictionary object not yet created for this thread");
2013-03-05 18:02:55 +04:00
return *dict;
}
const OnDiskPt::OnDiskWrapper &PhraseDictionaryOnDisk::GetImplementation() const
{
OnDiskPt::OnDiskWrapper* dict;
dict = m_implementation.get();
2013-11-23 00:27:46 +04:00
UTIL_THROW_IF2(dict == NULL, "Dictionary object not yet created for this thread");
2013-03-05 18:02:55 +04:00
return *dict;
}
void PhraseDictionaryOnDisk::InitializeForInput(InputType const& source)
{
2013-08-16 18:05:36 +04:00
ReduceCache();
2013-03-05 18:02:55 +04:00
OnDiskPt::OnDiskWrapper *obj = new OnDiskPt::OnDiskWrapper();
obj->BeginLoad(m_filePath);
2013-03-05 18:02:55 +04:00
2013-11-23 00:27:46 +04:00
UTIL_THROW_IF2(obj->GetMisc("Version") != OnDiskPt::OnDiskWrapper::VERSION_NUM,
2014-01-15 19:49:57 +04:00
"On-disk phrase table is version " << obj->GetMisc("Version")
<< ". It is not compatible with version " << OnDiskPt::OnDiskWrapper::VERSION_NUM);
2013-11-23 00:27:46 +04:00
UTIL_THROW_IF2(obj->GetMisc("NumSourceFactors") != m_input.size(),
2014-01-15 19:49:57 +04:00
"On-disk phrase table has " << obj->GetMisc("NumSourceFactors") << " source factors."
<< ". The ini file specified " << m_input.size() << " source factors");
2013-11-23 00:27:46 +04:00
UTIL_THROW_IF2(obj->GetMisc("NumTargetFactors") != m_output.size(),
2014-01-15 19:49:57 +04:00
"On-disk phrase table has " << obj->GetMisc("NumTargetFactors") << " target factors."
<< ". The ini file specified " << m_output.size() << " target factors");
2013-11-23 00:27:46 +04:00
UTIL_THROW_IF2(obj->GetMisc("NumScores") != m_numScoreComponents,
2014-01-15 19:49:57 +04:00
"On-disk phrase table has " << obj->GetMisc("NumScores") << " scores."
<< ". The ini file specified " << m_numScoreComponents << " scores");
2013-03-05 18:02:55 +04:00
m_implementation.reset(obj);
}
2013-07-05 13:52:12 +04:00
2013-08-16 15:34:31 +04:00
void PhraseDictionaryOnDisk::GetTargetPhraseCollectionBatch(const InputPathList &inputPathQueue) const
{
InputPathList::const_iterator iter;
2013-08-16 15:34:31 +04:00
for (iter = inputPathQueue.begin(); iter != inputPathQueue.end(); ++iter) {
2013-08-15 23:57:04 +04:00
InputPath &inputPath = **iter;
2013-08-16 15:34:31 +04:00
GetTargetPhraseCollectionBatch(inputPath);
}
2014-01-21 21:11:16 +04:00
// delete nodes that's been saved
for (iter = inputPathQueue.begin(); iter != inputPathQueue.end(); ++iter) {
InputPath &inputPath = **iter;
const OnDiskPt::PhraseNode *ptNode = static_cast<const OnDiskPt::PhraseNode*>(inputPath.GetPtNode(*this));
delete ptNode;
}
2013-08-16 15:34:31 +04:00
}
void PhraseDictionaryOnDisk::GetTargetPhraseCollectionBatch(InputPath &inputPath) const
{
2013-08-23 16:53:30 +04:00
OnDiskPt::OnDiskWrapper &wrapper = const_cast<OnDiskPt::OnDiskWrapper&>(GetImplementation());
const Phrase &phrase = inputPath.GetPhrase();
2013-10-02 19:51:16 +04:00
const InputPath *prevInputPath = inputPath.GetPrevPath();
2013-08-23 16:53:30 +04:00
const OnDiskPt::PhraseNode *prevPtNode = NULL;
if (prevInputPath) {
prevPtNode = static_cast<const OnDiskPt::PhraseNode*>(prevInputPath->GetPtNode(*this));
} else {
// Starting subphrase.
assert(phrase.GetSize() == 1);
prevPtNode = &wrapper.GetRootSourceNode();
}
2013-07-05 02:38:18 +04:00
// backoff
2014-05-12 18:40:18 +04:00
if (!SatisfyBackoff(inputPath)) {
2014-06-08 11:44:59 +04:00
return;
}
2013-08-23 16:53:30 +04:00
if (prevPtNode) {
Word lastWord = phrase.GetWord(phrase.GetSize() - 1);
lastWord.OnlyTheseFactors(m_inputFactors);
OnDiskPt::Word *lastWordOnDisk = wrapper.ConvertFromMoses(m_input, lastWord);
2013-07-05 02:38:18 +04:00
2013-08-23 16:53:30 +04:00
if (lastWordOnDisk == NULL) {
// OOV according to this phrase table. Not possible to extend
inputPath.SetTargetPhrases(*this, NULL, NULL);
2013-07-05 02:38:18 +04:00
} else {
2013-08-23 16:53:30 +04:00
const OnDiskPt::PhraseNode *ptNode = prevPtNode->GetChild(*lastWordOnDisk, wrapper);
if (ptNode) {
const TargetPhraseCollection *targetPhrases = GetTargetPhraseCollection(ptNode);
inputPath.SetTargetPhrases(*this, targetPhrases, ptNode);
2013-07-08 22:02:18 +04:00
} else {
2013-08-23 16:53:30 +04:00
inputPath.SetTargetPhrases(*this, NULL, NULL);
}
2013-08-23 16:53:30 +04:00
delete lastWordOnDisk;
2013-07-05 02:38:18 +04:00
}
2013-08-23 16:53:30 +04:00
}
2013-03-05 18:02:55 +04:00
}
2013-07-05 13:52:12 +04:00
2013-08-16 16:47:39 +04:00
const TargetPhraseCollection *PhraseDictionaryOnDisk::GetTargetPhraseCollection(const OnDiskPt::PhraseNode *ptNode) const
{
2013-08-23 16:53:30 +04:00
const TargetPhraseCollection *ret;
2014-01-21 22:07:12 +04:00
CacheColl &cache = GetCache();
size_t hash = (size_t) ptNode->GetFilePos();
2013-08-23 16:53:30 +04:00
CacheColl::iterator iter;
2013-08-23 16:53:30 +04:00
2014-01-21 22:07:12 +04:00
iter = cache.find(hash);
2013-08-23 16:53:30 +04:00
2014-01-21 22:07:12 +04:00
if (iter == cache.end()) {
// not in cache, need to look up from phrase table
ret = GetTargetPhraseCollectionNonCache(ptNode);
2013-08-23 16:53:30 +04:00
2014-01-21 22:07:12 +04:00
std::pair<const TargetPhraseCollection*, clock_t> value(ret, clock());
cache[hash] = value;
2013-08-23 16:53:30 +04:00
} else {
2014-01-21 22:07:12 +04:00
// in cache. just use it
std::pair<const TargetPhraseCollection*, clock_t> &value = iter->second;
value.second = clock();
ret = value.first;
2013-08-23 16:53:30 +04:00
}
return ret;
2013-08-16 16:47:39 +04:00
}
const TargetPhraseCollection *PhraseDictionaryOnDisk::GetTargetPhraseCollectionNonCache(const OnDiskPt::PhraseNode *ptNode) const
2013-08-16 16:26:21 +04:00
{
2013-08-23 16:53:30 +04:00
OnDiskPt::OnDiskWrapper &wrapper = const_cast<OnDiskPt::OnDiskWrapper&>(GetImplementation());
2013-08-16 16:26:21 +04:00
2013-08-23 16:53:30 +04:00
vector<float> weightT = StaticData::Instance().GetWeights(this);
OnDiskPt::Vocab &vocab = wrapper.GetVocab();
2013-08-16 16:26:21 +04:00
2013-08-23 16:53:30 +04:00
const OnDiskPt::TargetPhraseCollection *targetPhrasesOnDisk = ptNode->GetTargetPhraseCollection(m_tableLimit, wrapper);
TargetPhraseCollection *targetPhrases
= targetPhrasesOnDisk->ConvertToMoses(m_input, m_output, *this, weightT, vocab, false);
2013-08-16 16:26:21 +04:00
2013-08-23 16:53:30 +04:00
delete targetPhrasesOnDisk;
2013-08-16 16:26:21 +04:00
2013-08-23 16:53:30 +04:00
return targetPhrases;
}
void PhraseDictionaryOnDisk::SetParameter(const std::string& key, const std::string& value)
{
if (key == "max-span-default") {
m_maxSpanDefault = Scan<size_t>(value);
2015-01-14 14:07:42 +03:00
} else if (key == "max-span-labelled") {
m_maxSpanLabelled = Scan<size_t>(value);
2015-01-14 14:07:42 +03:00
} else {
PhraseDictionary::SetParameter(key, value);
}
}
2013-08-16 16:26:21 +04:00
} // namespace