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

TreeStructureFeature.h « FF « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35332846687a442b2d59483b90f79e9e564c0c0c (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#pragma once

#include <string>
#include <map>
#include "StatefulFeatureFunction.h"
#include "FFState.h"
#include "moses/Word.h"
#include "InternalTree.h"

namespace Moses
{

typedef int NTLabel;


// mapping from string nonterminal label to int representation.
// allows abstraction if multiple nonterminal strings should map to same label.
struct LabelSet {
public:
  std::map<std::string, NTLabel> string_to_label;
};


// class to implement language-specific syntactic constraints.
// the method SyntacticRules is given pointer to ScoreComponentCollection, so it can add sparse features itself.
class SyntaxConstraints
{
public:
  virtual void SyntacticRules(TreePointer root, const std::vector<TreePointer> &previous, const FeatureFunction* sp, ScoreComponentCollection* accumulator) = 0;
  virtual ~SyntaxConstraints() {};
};


class TreeStructureFeature : public StatefulFeatureFunction
{
  SyntaxConstraints* m_constraints;
  LabelSet* m_labelset;
  bool m_binarized;
  Word m_send;
  Word m_send_nt;

public:
  TreeStructureFeature(const std::string &line)
    :StatefulFeatureFunction(0, line)
    , m_binarized(false) {
    ReadParameters();
    std::vector<FactorType> factors;
    factors.push_back(0);
    m_send.CreateFromString(Output, factors, "</s>", false);
    m_send_nt.CreateFromString(Output, factors, "SEND", true);
  }
  ~TreeStructureFeature() {
    delete m_constraints;
  };

  virtual const FFState* EmptyHypothesisState(const InputType &input) const {
    return new TreeState(TreePointer());
  }

  bool IsUseable(const FactorMask &mask) const {
    return true;
  }

  void SetParameter(const std::string& key, const std::string& value);

  FFState* EvaluateWhenApplied(
    const Hypothesis& cur_hypo,
    const FFState* prev_state,
    ScoreComponentCollection* accumulator) const {
    UTIL_THROW(util::Exception, "Not implemented");
  };
  FFState* EvaluateWhenApplied(
    const ChartHypothesis& /* cur_hypo */,
    int /* featureID - used to index the state in the previous hypotheses */,
    ScoreComponentCollection* accumulator) const;

  void Load();
};


}