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

Hypo.h « src « reranking « contrib - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a85410289d3e8e47931625468dd58b05590e8090 (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
/*
 *  nbest: tool to process moses n-best lists
 *
 *  File: Hypo.h
 *        basic functions to process one hypothesis
 *
 *  Created by Holger Schwenk, University of Le Mans, 05/16/2008
 *
 */


#ifndef _HYPO_H_
#define _HYPO_H_

using namespace std;

#include <iostream>
#include <fstream>
#include <string>
#include <vector>

#include "Tools.h"

#define NBEST_DELIM "|||"
#define NBEST_DELIM2 " ||| "

class Hypo
{
  int id;
  string trg;  // translation
  vector<float> f;  // feature function scores
  float	s;  // global score
  // segmentation
public:
  Hypo();
  Hypo(int p_id,string &p_trg, vector<float> &p_f, float p_s) : id(p_id),trg(p_trg),f(p_f),s(p_s) {};
  ~Hypo();
  float CalcGlobal(Weights&);
  void Write(ofstream&);
  bool operator< (const Hypo&) const;
  // bool CompareLikelihoods (const Hypo&, const Hypo&) const;
};

#endif