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_LanguageModelMultiFactor_h
|
|
|
|
#define moses_LanguageModelMultiFactor_h
|
2008-06-11 14:52:57 +04:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
2012-11-12 23:56:18 +04:00
|
|
|
#include "Implementation.h"
|
|
|
|
#include "moses/Word.h"
|
|
|
|
#include "moses/FactorTypeSet.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 Phrase;
|
|
|
|
|
2013-05-29 21:16:15 +04:00
|
|
|
/* Abstract class for for multi factor LM. Only inherited by the JointLM at the moment.
|
2012-06-29 02:29:46 +04:00
|
|
|
* Could use this when factored LM are implemented
|
|
|
|
*/
|
2010-11-17 17:06:21 +03:00
|
|
|
class LanguageModelMultiFactor : public LanguageModelImplementation
|
2008-06-11 14:52:57 +04:00
|
|
|
{
|
|
|
|
protected:
|
2011-02-24 16:14:42 +03:00
|
|
|
FactorMask m_factorTypes;
|
2008-06-11 14:52:57 +04:00
|
|
|
|
2013-10-29 22:59:53 +04:00
|
|
|
LanguageModelMultiFactor(const std::string &line)
|
|
|
|
:LanguageModelImplementation(line) {
|
2013-06-10 21:11:55 +04:00
|
|
|
}
|
2013-05-29 21:16:15 +04:00
|
|
|
|
2008-06-11 14:52:57 +04:00
|
|
|
public:
|
2011-02-24 16:14:42 +03:00
|
|
|
virtual bool Load(const std::string &filePath
|
|
|
|
, const std::vector<FactorType> &factorTypes
|
|
|
|
, size_t nGramOrder) = 0;
|
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
|