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_LanguageModelSingleFactor_h
|
|
|
|
#define moses_LanguageModelSingleFactor_h
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2012-11-12 23:56:18 +04:00
|
|
|
#include "Implementation.h"
|
|
|
|
#include "moses/Phrase.h"
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
namespace Moses
|
|
|
|
{
|
|
|
|
|
2008-06-11 14:52:57 +04:00
|
|
|
class FactorCollection;
|
|
|
|
class Factor;
|
|
|
|
|
2011-02-24 16:14:42 +03:00
|
|
|
//! Abstract class for for single factor LM
|
2010-11-17 17:06:21 +03:00
|
|
|
class LanguageModelSingleFactor : public LanguageModelImplementation
|
2008-06-11 14:52:57 +04:00
|
|
|
{
|
2011-02-24 16:14:42 +03:00
|
|
|
protected:
|
2013-02-21 02:09:00 +04:00
|
|
|
typedef const void *State;
|
|
|
|
|
2011-02-24 16:14:42 +03:00
|
|
|
const Factor *m_sentenceStart, *m_sentenceEnd;
|
2013-02-21 02:09:00 +04:00
|
|
|
|
2011-02-24 16:14:42 +03:00
|
|
|
FactorType m_factorType;
|
2013-02-21 02:09:00 +04:00
|
|
|
FFState *m_nullContextState;
|
|
|
|
FFState *m_beginSentenceState;
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2013-02-21 02:44:11 +04:00
|
|
|
LanguageModelSingleFactor(const std::string& description, const std::string &line);
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual ~LanguageModelSingleFactor();
|
|
|
|
virtual bool Load(const std::string &filePath
|
|
|
|
, FactorType factorType
|
|
|
|
, size_t nGramOrder) = 0;
|
|
|
|
|
|
|
|
bool Useable(const Phrase &phrase) const
|
|
|
|
{
|
|
|
|
return (phrase.GetSize()>0 && phrase.GetFactor(0, m_factorType) != NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Factor *GetSentenceStart() const
|
|
|
|
{
|
|
|
|
return m_sentenceStart;
|
|
|
|
}
|
|
|
|
const Factor *GetSentenceEnd() const
|
|
|
|
{
|
|
|
|
return m_sentenceEnd;
|
|
|
|
}
|
|
|
|
FactorType GetFactorType() const
|
|
|
|
{
|
|
|
|
return m_factorType;
|
|
|
|
}
|
2010-10-27 21:50:40 +04:00
|
|
|
|
2011-08-24 14:15:29 +04:00
|
|
|
virtual const FFState *GetNullContextState() const;
|
|
|
|
virtual const FFState *GetBeginSentenceState() const;
|
2010-11-17 17:06:21 +03:00
|
|
|
virtual FFState *NewState(const FFState *from = NULL) const;
|
2010-10-27 21:50:40 +04:00
|
|
|
|
2011-03-08 02:21:09 +03:00
|
|
|
virtual LMResult GetValueForgotState(const std::vector<const Word*> &contextFactor, FFState &outState) const;
|
2010-10-27 21:50:40 +04:00
|
|
|
|
2011-03-08 02:21:09 +03:00
|
|
|
virtual LMResult GetValue(const std::vector<const Word*> &contextFactor, State* finalState = NULL) const = 0;
|
2010-10-27 21:50:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-10-09 03:51:26 +04:00
|
|
|
}
|
|
|
|
|
2010-02-24 14:15:44 +03:00
|
|
|
#endif
|