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

PhraseDictionaryALSuffixArray.h « src « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79c928c69edcb366b498499cdc481b995fdba1fc (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
//
//  PhraseDictionaryALSuffixArray.h
//  moses
//
//  Created by Hieu Hoang on 06/11/2011.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#ifndef moses_PhraseDictionaryALSuffixArray_h
#define moses_PhraseDictionaryALSuffixArray_h

#include "PhraseDictionarySCFG.h"

namespace Moses {
  
class PhraseDictionaryALSuffixArray : public PhraseDictionarySCFG
{
public:
  PhraseDictionaryALSuffixArray(size_t numScoreComponent, PhraseDictionaryFeature* feature)
  : PhraseDictionarySCFG(numScoreComponent,feature) {}

  bool Load(const std::vector<FactorType> &input
            , const std::vector<FactorType> &output
            , const std::string &filePath
            , const std::vector<float> &weight
            , size_t tableLimit
            , const LMList &languageModels
            , const WordPenaltyProducer* wpProducer);

  void InitializeForInput(InputType const& source);

protected:
  const std::vector<FactorType> *m_input, *m_output;
  const LMList *m_languageModels;
  const WordPenaltyProducer *m_wpProducer;
  const std::vector<float> *m_weight;
  
};
  

}

#endif