mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-10 10:59:21 +03:00
87 lines
2.4 KiB
C++
87 lines
2.4 KiB
C++
// $Id$
|
|
/***********************************************************************
|
|
Moses - factored phrase-based, hierarchical and syntactic language decoder
|
|
Copyright (C) 2009 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
|
|
***********************************************************************/
|
|
#pragma once
|
|
|
|
#include "TargetPhrase.h"
|
|
#include "Vocab.h"
|
|
|
|
namespace Moses
|
|
{
|
|
class TargetPhraseCollection;
|
|
class PhraseDictionary;
|
|
}
|
|
|
|
namespace OnDiskPt
|
|
{
|
|
|
|
/** A vector of target phrases
|
|
*/
|
|
class TargetPhraseCollection
|
|
{
|
|
class TargetPhraseOrderByScore
|
|
{
|
|
public:
|
|
bool operator()(const TargetPhrase* a, const TargetPhrase *b) const {
|
|
return a->GetScore(s_sortScoreInd) > b->GetScore(s_sortScoreInd);
|
|
}
|
|
};
|
|
|
|
protected:
|
|
typedef std::vector<TargetPhrase*> CollType;
|
|
CollType m_coll;
|
|
UINT64 m_filePos;
|
|
std::string m_debugStr;
|
|
|
|
public:
|
|
static size_t s_sortScoreInd;
|
|
|
|
TargetPhraseCollection();
|
|
TargetPhraseCollection(const TargetPhraseCollection ©);
|
|
|
|
~TargetPhraseCollection();
|
|
void AddTargetPhrase(TargetPhrase *targetPhrase);
|
|
void Sort(size_t tableLimit);
|
|
|
|
void Save(OnDiskWrapper &onDiskWrapper);
|
|
|
|
size_t GetSize() const {
|
|
return m_coll.size();
|
|
}
|
|
|
|
const TargetPhrase &GetTargetPhrase(size_t ind) const;
|
|
|
|
UINT64 GetFilePos() const;
|
|
|
|
Moses::TargetPhraseCollection *ConvertToMoses(const std::vector<Moses::FactorType> &inputFactors
|
|
, const std::vector<Moses::FactorType> &outputFactors
|
|
, const Moses::PhraseDictionary &phraseDict
|
|
, const std::vector<float> &weightT
|
|
, Vocab &vocab
|
|
, bool isSyntax) const;
|
|
void ReadFromFile(size_t tableLimit, UINT64 filePos, OnDiskWrapper &onDiskWrapper);
|
|
|
|
const std::string GetDebugStr() const;
|
|
void SetDebugStr(const std::string &str);
|
|
|
|
};
|
|
|
|
}
|
|
|