summaryrefslogtreecommitdiff
path: root/extractor/translation_table.h
blob: acf94af784a46c6d216ecac43d90fc5ae055a4eb (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
#ifndef _TRANSLATION_TABLE_
#define _TRANSLATION_TABLE_

#include <memory>
#include <string>
#include <tr1/unordered_map>

#include <boost/filesystem.hpp>
#include <boost/functional/hash.hpp>

using namespace std;
using namespace tr1;
namespace fs = boost::filesystem;

class Alignment;
class DataArray;

typedef boost::hash<pair<int, int> > PairHash;

class TranslationTable {
 public:
  TranslationTable(
      shared_ptr<DataArray> source_data_array,
      shared_ptr<DataArray> target_data_array,
      shared_ptr<Alignment> alignment);

  double GetTargetGivenSourceScore(const string& source_word,
                                   const string& target_word);

  double GetSourceGivenTargetScore(const string& source_word,
                                   const string& target_word);

  void WriteBinary(const fs::path& filepath) const;

 private:
  shared_ptr<DataArray> source_data_array;
  shared_ptr<DataArray> target_data_array;
  unordered_map<pair<int, int>, pair<double, double>, PairHash>
      translation_probabilities;
};

#endif