mosesdecoder/moses/LM/Remote.h

54 lines
1.1 KiB
C
Raw Permalink Normal View History

#ifndef moses_LanguageModelRemote_h
#define moses_LanguageModelRemote_h
2012-11-12 23:56:18 +04:00
#include "SingleFactor.h"
#include "moses/TypeDef.h"
#include "moses/Factor.h"
#include <sys/types.h>
#if defined(_WIN32) || defined(_WIN64)
#include <winsock2.h>
#else
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#endif
namespace Moses
{
2012-06-29 02:29:46 +04:00
/** @todo ask miles
*/
2013-02-21 02:09:00 +04:00
class LanguageModelRemote : public LanguageModelSingleFactor
{
private:
struct Cache {
std::map<const Factor*, Cache> tree;
float prob;
State boState;
Cache() : prob(0) {}
};
int sock, port;
struct hostent *hp;
struct sockaddr_in server;
mutable size_t m_curId;
mutable Cache m_cache;
bool start(const std::string& host, int port);
static const Factor* BOS;
static const Factor* EOS;
public:
~LanguageModelRemote();
void ClearSentenceCache() {
m_cache.tree.clear();
m_curId = 1000;
}
virtual LMResult GetValue(const std::vector<const Word*> &contextFactor, State* finalState = 0) const;
bool Load(const std::string &filePath
, FactorType factorType
, size_t nGramOrder);
};
}
#endif