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

SyntacticLanguageModel.cpp « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c1fa7af83c652c9a4ae4b0270ae58a4e4b09f52 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
// This file should be compiled only when the HAVE_SYNLM flag is enabled.
//
// The following ifdef prevents XCode and other non-bjam build systems
// from attempting to compile this file when HAVE_SYNLM is disabled.
//
#ifdef HAVE_SYNLM

//

#include "StaticData.h"
#include "SyntacticLanguageModel.h"
#include "HHMMLangModel-gf.h"
#include "TextObsModel.h"
#include "SyntacticLanguageModelFiles.h"
#include "SyntacticLanguageModelState.h"


namespace Moses
{
SyntacticLanguageModel::SyntacticLanguageModel(const std::string &line)
// Initialize member variables
/*
: m_NumScoreComponents(weights.size())
, m_files(new SyntacticLanguageModelFiles<YModel,XModel>(filePath))
, m_factorType(factorType)
, m_beamWidth(beamWidth) {
*/
{
  /* taken from StaticData::LoadSyntacticLanguageModel()
        cerr << "Loading syntactic language models..." << std::endl;

  const vector<float> weights = Scan<float>(m_parameter->GetParam("weight-slm"));
  const vector<string> files = m_parameter->GetParam("slmodel-file");

  const FactorType factorType = (m_parameter->GetParam("slmodel-factor").size() > 0) ?
    TransformScore(Scan<int>(m_parameter->GetParam("slmodel-factor")[0]))
    : 0;

  const size_t beamWidth = (m_parameter->GetParam("slmodel-beam").size() > 0) ?
    TransformScore(Scan<int>(m_parameter->GetParam("slmodel-beam")[0]))
    : 500;

  if (files.size() < 1) {
    cerr << "No syntactic language model files specified!" << std::endl;
    return false;
  }

  // check if feature is used
  if (weights.size() >= 1) {

    //cout.setf(ios::scientific,ios::floatfield);
    //cerr.setf(ios::scientific,ios::floatfield);

    // create the feature
    m_syntacticLanguageModel = new SyntacticLanguageModel(files,weights,factorType,beamWidth);


    /////////////////////////////////////////
    // BEGIN LANE's UNSTABLE EXPERIMENT :)
    //

    //double ppl = m_syntacticLanguageModel->perplexity();
    //cerr << "Probability is " << ppl << endl;


    //
    // END LANE's UNSTABLE EXPERIMENT
    /////////////////////////////////////////



    if (m_syntacticLanguageModel==NULL) {
      return false;
    }

  }

  return true;

   */
}

SyntacticLanguageModel::~SyntacticLanguageModel()
{
  VERBOSE(3,"Destructing SyntacticLanguageModel" << std::endl);
  delete m_files;
}

size_t SyntacticLanguageModel::GetNumScoreComponents() const
{
  return m_NumScoreComponents;
}

std::string SyntacticLanguageModel::GetScoreProducerDescription() const
{
  return "SyntacticLM";
}

const FFState* SyntacticLanguageModel::EmptyHypothesisState(const InputType &input) const
{

  return new SyntacticLanguageModelState<YModel,XModel,S,R>(m_files,m_beamWidth);

}

/*
double SyntacticLanguageModel::perplexity() {

  SyntacticLanguageModelState<YModel,XModel,S,R> *prev =
    new SyntacticLanguageModelState<YModel,XModel,S,R>(m_files,m_beamWidth);

  std::cerr << "Initial prob:" << "\t" << prev->getProb() <<std::endl;


  std::vector<std::string> words(3);
  words[0] = "no";
  words[1] = ",";
  words[2] = "zxvth";


  for (std::vector<std::string>::iterator i=words.begin();
 i != words.end();
 i++) {

    prev = new SyntacticLanguageModelState<YModel,XModel,S,R>(prev, *i);
    std::cerr << *i << "\t" << prev->getProb() <<std::endl;

  }

  if (true) exit(-1);

  return prev->getProb();

}
*/
FFState* SyntacticLanguageModel::Evaluate(const Hypothesis& cur_hypo,
    const FFState* prev_state,
    ScoreComponentCollection* accumulator) const
{

  VERBOSE(3,"Evaluating SyntacticLanguageModel for a hypothesis" << endl);

  SyntacticLanguageModelState<YModel,XModel,S,R>*  tmpState = NULL;
  SyntacticLanguageModelState<YModel,XModel,S,R>* nextState = NULL;


  const TargetPhrase& targetPhrase = cur_hypo.GetCurrTargetPhrase();

  for (size_t i=0, n=targetPhrase.GetSize(); i<n; i++) {

    const Word& word = targetPhrase.GetWord(i);
    const Factor* factor = word.GetFactor(m_factorType);

    const std::string& string = factor->GetString();

    if (i==0) {
      nextState = new SyntacticLanguageModelState<YModel,XModel,S,R>((const SyntacticLanguageModelState<YModel,XModel,S,R>*)prev_state, string);
    } else {
      tmpState = nextState;
      nextState = new SyntacticLanguageModelState<YModel,XModel,S,R>(tmpState, string);
      delete tmpState;
    }

    double score = nextState->getScore();
    VERBOSE(3,"SynLM evaluated a score of " << score << endl);
    accumulator->Assign( this, score );
  }



  return nextState;

}

}

#endif