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

ControlRecombination.h « FF « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 034b1a790ae2198f91af9b6fb45d490e320ff115 (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
82
83
84
85
86
87
88
#pragma once

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

namespace Moses
{
enum ControlRecombinationType {
  // when to recombine
  SameOutput = 1,
  Never = 2
};

class ControlRecombination;

class ControlRecombinationState : public FFState
{
public:
  ControlRecombinationState(const ControlRecombination &ff)
    :m_ff(ff) {
  }

  ControlRecombinationState(const Hypothesis &hypo, const ControlRecombination &ff);
  ControlRecombinationState(const ChartHypothesis &hypo, const ControlRecombination &ff);

  virtual size_t hash() const;
  virtual bool operator==(const FFState& other) const;

  const Phrase &GetPhrase() const {
    return m_outputPhrase;
  }

protected:
  Phrase m_outputPhrase;
  const ControlRecombination &m_ff;
  const void *m_hypo;
};

//////////////////////////////////////////////////////////////////

// only allow recombination for the same output
class ControlRecombination : public StatefulFeatureFunction
{
public:
  ControlRecombination(const std::string &line)
    :StatefulFeatureFunction(0, line)
    ,m_type(SameOutput)

  {
    m_tuneable = false;
    ReadParameters();
  }

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

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

  FFState* EvaluateWhenApplied(
    const ChartHypothesis& /* cur_hypo */,
    int /* featureID - used to index the state in the previous hypotheses */,
    ScoreComponentCollection* accumulator) const;

  virtual const FFState* EmptyHypothesisState(const InputType &input) const {
    return new ControlRecombinationState(*this);
  }

  std::vector<float> DefaultWeights() const;

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

  ControlRecombinationType GetType() const {
    return m_type;
  }
protected:
  ControlRecombinationType m_type;
};


}