Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SkeletonLM.h « LM « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 988c9def9275baeb36f8720ac81ce5c1a17279ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// $Id$
#pragma once

#include <vector>
#include "SingleFactor.h"

namespace Moses
{

class SkeletonLM : public LanguageModelSingleFactor
{
protected:

public:
  SkeletonLM(const std::string &line);
  ~SkeletonLM();

  virtual LMResult GetValue(const std::vector<const Word*> &contextFactor, State* finalState = 0) const;
};


}