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

SyntacticLanguageModel.h « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad11d29bffc76711f0f083d1cfaade90990c9aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//

#ifndef moses_SyntacticLanguageModel_h
#define moses_SyntacticLanguageModel_h

#include "FeatureFunction.h"
#include <stdexcept>

class YModel; // hidden model
class XModel; // observed model

namespace Moses
{

template <class MH, class MO> class SyntacticLanguageModelFiles;

class SyntacticLanguageModel : public StatefulFeatureFunction
{

public:
  SyntacticLanguageModel(const std::string &line);

  ~SyntacticLanguageModel();

  size_t GetNumScoreComponents() const;

  const FFState* EmptyHypothesisState(const InputType &input) const;

  FFState* Evaluate(const Hypothesis& cur_hypo,
                    const FFState* prev_state,
                    ScoreComponentCollection* accumulator) const;

  FFState* EvaluateWhenApplied(const ChartHypothesis& cur_hypo,
                               int featureID,
                               ScoreComponentCollection* accumulator) const {
    throw std::runtime_error("Syntactic LM can only be used with phrase-based decoder.");
  }


  //    double perplexity();

private:

  const size_t m_NumScoreComponents;
  SyntacticLanguageModelFiles<YModel,XModel>* m_files;
  const FactorType m_factorType;
  const size_t m_beamWidth;

};


}

#endif