blob: a56bbcef49ebe9420577095015217dac297da58d (
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
|
#include "ttables.h"
#include <cassert>
#include "dict.h"
using namespace std;
void TTable::DeserializeProbsFromText(std::istream* in) {
int c = 0;
while(*in) {
string e;
string f;
double p;
(*in) >> e >> f >> p;
if (e.empty()) break;
++c;
ttable[TD::Convert(e)][TD::Convert(f)] = p;
}
cerr << "Loaded " << c << " translation parameters.\n";
}
void TTable::DeserializeLogProbsFromText(std::istream* in) {
int c = 0;
while(*in) {
string e;
string f;
double p;
(*in) >> e >> f >> p;
if (e.empty()) break;
++c;
ttable[TD::Convert(e)][TD::Convert(f)] = exp(p);
}
cerr << "Loaded " << c << " translation parameters.\n";
}
void TTable::SerializeHelper(string* out, const Word2Word2Double& o) {
assert(!"not implemented");
}
void TTable::DeserializeHelper(const string& in, Word2Word2Double* o) {
assert(!"not implemented");
}
|