mosesdecoder/moses/LM/SRI.h

65 lines
1.8 KiB
C
Raw Normal View History

// $Id$
/***********************************************************************
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
***********************************************************************/
#ifndef moses_LanguageModelSRI_h
#define moses_LanguageModelSRI_h
#include <string>
#include <vector>
2012-11-14 17:43:04 +04:00
#include "moses/Factor.h"
#include "moses/TypeDef.h"
#include "SingleFactor.h"
class Factor;
class Phrase;
2011-11-18 17:40:20 +04:00
class Vocab;
class Ngram;
namespace Moses
{
2012-06-29 02:29:46 +04:00
/** Implementation of single factor LM using IRST's code.
*/
2013-02-21 02:09:00 +04:00
class LanguageModelSRI : public LanguageModelSingleFactor
{
protected:
2011-11-18 17:40:20 +04:00
std::vector<unsigned int> m_lmIdLookup;
::Vocab *m_srilmVocab;
Ngram *m_srilmModel;
2011-11-18 17:40:20 +04:00
unsigned int m_unknownId;
2011-11-18 17:40:20 +04:00
LMResult GetValue(unsigned int wordId, unsigned int *context) const;
void CreateFactors();
2011-11-18 17:40:20 +04:00
unsigned int GetLmID( const std::string &str ) const;
unsigned int GetLmID( const Factor *factor ) const;
public:
LanguageModelSRI(const std::string &line);
~LanguageModelSRI();
void Load();
virtual LMResult GetValue(const std::vector<const Word*> &contextFactor, State* finalState = 0) const;
};
}
#endif