summaryrefslogtreecommitdiff
path: root/training/ttables.cc
diff options
context:
space:
mode:
Diffstat (limited to 'training/ttables.cc')
-rw-r--r--training/ttables.cc31
1 files changed, 31 insertions, 0 deletions
diff --git a/training/ttables.cc b/training/ttables.cc
new file mode 100644
index 00000000..45bf14c5
--- /dev/null
+++ b/training/ttables.cc
@@ -0,0 +1,31 @@
+#include "ttables.h"
+
+#include <cassert>
+
+#include "dict.h"
+
+using namespace std;
+using namespace std::tr1;
+
+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::SerializeHelper(string* out, const Word2Word2Double& o) {
+ assert(!"not implemented");
+}
+
+void TTable::DeserializeHelper(const string& in, Word2Word2Double* o) {
+ assert(!"not implemented");
+}
+