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

try-align.cc « UG « TranslationModel « moses - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30c87ccab8097fdc8e9b001e24c2583626109223 (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
#include "mmsapt.h"
using namespace std;
using namespace Moses;


Mmsapt* PT;
int main(int argc, char* argv[])
{
  string base = argv[1];
  string L1   = argv[2];
  string L2   = argv[3];
  ostringstream buf;
  buf << "Mmsapt name=PT0 output-factor=0 num-features=5 base="
      << base << " L1=" << L1 << " L2=" << L2;
  string configline = buf.str();
  PT = new Mmsapt(configline);
  PT->Load();
  float w[] = { 0.0582634, 0.0518865, 0.0229819, 0.00640856,  0.647506 };
  vector<float> weights(w,w+5);
  PT->setWeights(weights);
  // these values are taken from a moses.ini file;
  // is there a convenient way of accessing them from within mmsapt ???
  string eline,fline;
  // TokenIndex V; V.open("crp/trn/mm/de.tdx");
  while (getline(cin,eline) && getline(cin,fline))
    {
      cout << eline << endl;
      cout << fline << endl;
      PT->align(eline,fline);
    }
  delete PT;
}