2012-08-03 18:38:45 +04:00
|
|
|
// $Id$
|
|
|
|
// 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
|
|
|
|
***********************************************************************/
|
2012-08-02 20:32:55 +04:00
|
|
|
|
|
|
|
#ifndef moses_PhraseDictionaryCompact_h
|
|
|
|
#define moses_PhraseDictionaryCompact_h
|
|
|
|
|
|
|
|
#include <boost/unordered_map.hpp>
|
|
|
|
|
|
|
|
#ifdef WITH_THREADS
|
|
|
|
#ifdef BOOST_HAS_PTHREADS
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2012-11-27 19:08:31 +04:00
|
|
|
#include "moses/TranslationModel/PhraseDictionary.h"
|
2012-11-12 23:56:18 +04:00
|
|
|
#include "moses/ThreadPool.h"
|
2012-08-02 20:32:55 +04:00
|
|
|
|
|
|
|
#include "BlockHashIndex.h"
|
|
|
|
#include "StringVector.h"
|
|
|
|
#include "PhraseDecoder.h"
|
|
|
|
#include "TargetPhraseCollectionCache.h"
|
|
|
|
|
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
|
|
|
class PhraseDecoder;
|
|
|
|
|
|
|
|
class PhraseDictionaryCompact : public PhraseDictionary
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
friend class PhraseDecoder;
|
|
|
|
|
|
|
|
bool m_inMemory;
|
2012-09-13 18:09:32 +04:00
|
|
|
bool m_useAlignmentInfo;
|
2012-08-02 20:32:55 +04:00
|
|
|
|
2012-08-11 03:26:40 +04:00
|
|
|
typedef std::vector<TargetPhraseCollection*> PhraseCache;
|
2012-08-02 20:32:55 +04:00
|
|
|
#ifdef WITH_THREADS
|
|
|
|
boost::mutex m_sentenceMutex;
|
2012-08-11 03:26:40 +04:00
|
|
|
typedef std::map<boost::thread::id, PhraseCache> SentenceCache;
|
2012-08-02 20:32:55 +04:00
|
|
|
#else
|
|
|
|
typedef PhraseCache SentenceCache;
|
|
|
|
#endif
|
|
|
|
SentenceCache m_sentenceCache;
|
|
|
|
|
|
|
|
BlockHashIndex m_hash;
|
|
|
|
PhraseDecoder* m_phraseDecoder;
|
|
|
|
|
2012-11-17 03:46:22 +04:00
|
|
|
StringVector<unsigned char, size_t, MmapAllocator> m_targetPhrasesMapped;
|
|
|
|
StringVector<unsigned char, size_t, std::allocator> m_targetPhrasesMemory;
|
2013-02-25 22:52:58 +04:00
|
|
|
|
|
|
|
std::vector<float> m_weight;
|
2012-08-02 20:32:55 +04:00
|
|
|
public:
|
2013-02-22 23:17:57 +04:00
|
|
|
PhraseDictionaryCompact(const std::string &line)
|
|
|
|
:PhraseDictionary("PhraseDictionaryCompact", line)
|
|
|
|
,m_inMemory(true)
|
|
|
|
,m_useAlignmentInfo(true)
|
|
|
|
,m_hash(10, 16)
|
|
|
|
,m_phraseDecoder(0)
|
|
|
|
,m_weight(0)
|
|
|
|
{
|
|
|
|
}
|
2012-08-02 20:32:55 +04:00
|
|
|
|
2012-11-16 20:52:20 +04:00
|
|
|
~PhraseDictionaryCompact();
|
|
|
|
|
2013-02-25 22:52:58 +04:00
|
|
|
bool InitDictionary();
|
2012-08-02 20:32:55 +04:00
|
|
|
|
|
|
|
const TargetPhraseCollection* GetTargetPhraseCollection(const Phrase &source) const;
|
2012-09-13 18:09:32 +04:00
|
|
|
TargetPhraseVectorPtr GetTargetPhraseCollectionRaw(const Phrase &source) const;
|
|
|
|
|
2012-08-02 20:32:55 +04:00
|
|
|
void AddEquivPhrase(const Phrase &source, const TargetPhrase &targetPhrase);
|
|
|
|
|
2012-08-11 03:26:40 +04:00
|
|
|
void CacheForCleanup(TargetPhraseCollection* tpc);
|
2012-12-24 19:56:29 +04:00
|
|
|
void CleanUpAfterSentenceProcessing(const InputType &source);
|
2012-08-02 20:32:55 +04:00
|
|
|
|
|
|
|
virtual ChartRuleLookupManager *CreateRuleLookupManager(
|
|
|
|
const InputType &,
|
2012-10-11 17:27:30 +04:00
|
|
|
const ChartCellCollectionBase &)
|
2012-08-02 20:32:55 +04:00
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
TO_STRING();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|