mosesdecoder/moses/TranslationModel/RuleTable/LoaderCompact.h

99 lines
3.3 KiB
C
Raw Normal View History

/***********************************************************************
Moses - statistical machine translation system
Copyright (C) 2006-2011 University of Edinburgh
2013-05-29 21:16:15 +04:00
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.
2013-05-29 21:16:15 +04:00
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.
2013-05-29 21:16:15 +04:00
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
2012-11-12 23:56:18 +04:00
#include "moses/Phrase.h"
#include "moses/Word.h"
#include "moses/TypeDef.h"
#include "Loader.h"
#include <istream>
#include <string>
#include <vector>
namespace Moses
{
class RuleTableTrie;
2012-06-29 02:29:46 +04:00
//! @todo ask phil williams
class RuleTableLoaderCompact : public RuleTableLoader
{
2013-05-29 21:16:15 +04:00
public:
bool Load(const std::vector<FactorType> &input,
const std::vector<FactorType> &output,
2012-10-14 23:52:12 +04:00
const std::string &inFile,
size_t tableLimit,
RuleTableTrie &);
2013-05-29 21:16:15 +04:00
private:
struct LineReader {
LineReader(std::istream &input) : m_input(input), m_lineNum(0) {}
void ReadLine() {
std::getline(m_input, m_line);
// Assume everything's hunky-dory.
++m_lineNum;
}
std::istream &m_input;
std::string m_line;
size_t m_lineNum;
};
void LoadVocabularySection(LineReader &,
const std::vector<FactorType> &,
std::vector<Word> &);
void LoadPhraseSection(LineReader &,
const std::vector<Word> &,
std::vector<Phrase> &,
std::vector<size_t> &);
void LoadAlignmentSection(LineReader &,
std::vector<const AlignmentInfo *> &,
std::vector<Phrase> &);
bool LoadRuleSection(LineReader &,
const std::vector<Word> &,
const std::vector<Phrase> &,
const std::vector<Phrase> &,
const std::vector<size_t> &,
const std::vector<const AlignmentInfo *> &,
RuleTableTrie &ruleTable);
// Like Tokenize() but records starting positions of tokens (instead of
// copying substrings) and assumes delimiter is ASCII space character.
2013-05-29 21:16:15 +04:00
void FindTokens(std::vector<size_t> &output, const std::string &str) const {
// Skip delimiters at beginning.
size_t lastPos = str.find_first_not_of(' ', 0);
// Find first "non-delimiter".
size_t pos = str.find_first_of(' ', lastPos);
while (std::string::npos != pos || std::string::npos != lastPos) {
// Found a token, add it to the vector.
output.push_back(lastPos);
// Skip delimiters. Note the "not_of"
lastPos = str.find_first_not_of(' ', pos);
// Find next "non-delimiter"
pos = str.find_first_of(' ', lastPos);
}
}
};
} // namespace Moses