2008-06-11 14:52:57 +04:00
|
|
|
// $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
|
|
|
|
***********************************************************************/
|
|
|
|
|
2010-02-24 14:15:44 +03:00
|
|
|
#ifndef moses_LanguageModelSRI_h
|
|
|
|
#define moses_LanguageModelSRI_h
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2012-11-14 17:43:04 +04:00
|
|
|
#include "moses/Factor.h"
|
|
|
|
#include "moses/TypeDef.h"
|
|
|
|
#include "SingleFactor.h"
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
class Factor;
|
|
|
|
class Phrase;
|
2011-11-18 17:40:20 +04:00
|
|
|
class Vocab;
|
|
|
|
class Ngram;
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2008-10-09 04:20:39 +04:00
|
|
|
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
|
2008-06-11 14:52:57 +04:00
|
|
|
{
|
|
|
|
protected:
|
2011-11-18 17:40:20 +04:00
|
|
|
std::vector<unsigned int> m_lmIdLookup;
|
2011-02-24 16:14:42 +03:00
|
|
|
::Vocab *m_srilmVocab;
|
|
|
|
Ngram *m_srilmModel;
|
2011-11-18 17:40:20 +04:00
|
|
|
unsigned int m_unknownId;
|
2011-02-24 16:14:42 +03:00
|
|
|
|
2011-11-18 17:40:20 +04:00
|
|
|
LMResult GetValue(unsigned int wordId, unsigned int *context) const;
|
2011-02-24 16:14:42 +03:00
|
|
|
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;
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
public:
|
2013-02-21 02:44:11 +04:00
|
|
|
LanguageModelSRI(const std::string &line);
|
2011-02-24 16:14:42 +03:00
|
|
|
~LanguageModelSRI();
|
2013-05-31 23:50:13 +04:00
|
|
|
void Load();
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2011-03-08 02:21:09 +03:00
|
|
|
virtual LMResult GetValue(const std::vector<const Word*> &contextFactor, State* finalState = 0) const;
|
2008-06-11 14:52:57 +04:00
|
|
|
};
|
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
|
|
|
|
}
|
2010-02-24 14:15:44 +03:00
|
|
|
#endif
|