forked from tmbdev/clstm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clstmfiltertrain.cc
158 lines (144 loc) · 4.83 KB
/
clstmfiltertrain.cc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include "clstm.h"
#include <assert.h>
#include <math.h>
#include <fstream>
#include <iostream>
#include <iostream>
#include <memory>
#include <set>
#include <sstream>
#include <vector>
#include "clstmhl.h"
#include "extras.h"
#include "pstring.h"
#include "utils.h"
using namespace Eigen;
using namespace ocropus;
using std::vector;
using std::map;
using std::make_pair;
using std::shared_ptr;
using std::unique_ptr;
using std::cout;
using std::ifstream;
using std::set;
using std::to_string;
using std_string = std::string;
using std_wstring = std::wstring;
#define string std_string
#define wstring std_wstring
struct Sample {
wstring in, out;
};
void read_samples(vector<Sample> &samples, const string &fname) {
ifstream stream(fname);
string line;
wstring in, out;
samples.clear();
while (getline(stream, line)) {
// skip blank lines and lines starting with a comment
if (line.substr(0, 1) == "#") continue;
if (line.size() == 0) continue;
int where = line.find("\t");
if (where < 0) THROW("no tab found in input line");
in = utf8_to_utf32(line.substr(0, where));
out = utf8_to_utf32(line.substr(where + 1));
if (in.size() == 0) continue;
if (out.size() == 0) continue;
samples.push_back(Sample{in, out});
}
}
void get_codec(vector<int> &codec, vector<Sample> &samples,
wstring Sample::*p) {
set<int> codes;
codes.insert(0);
for (auto e : samples) {
for (auto c : e.*p) codes.insert(int(c));
}
for (auto c : codes) codec.push_back(c);
for (int i = 1; i < codec.size(); i++) assert(codec[i] > codec[i - 1]);
}
int main1(int argc, char **argv) {
if (argc < 2 || argc > 3) THROW("... training [testing]");
vector<Sample> samples, test_samples;
read_samples(samples, argv[1]);
if (argc > 2) read_samples(test_samples, argv[2]);
print("got", samples.size(), "inputs,", test_samples.size(), "tests");
string load_name = getsenv("load", "");
CLSTMText clstm;
int nhidden = -1;
double lrate = getdenv("lrate", 1e-4);
double momentum = getdenv("momentum", 0.9);
if (load_name != "") {
clstm.load(load_name);
} else {
vector<int> icodec, codec;
get_codec(icodec, samples, &Sample::in);
get_codec(codec, samples, &Sample::out);
nhidden = getienv("nhidden", 100);
clstm.createBidi(icodec, codec, nhidden);
clstm.setLearningRate(lrate, momentum);
}
network_info(clstm.net);
int ntrain = getienv("ntrain", 10000000);
int save_every = getienv("save_every", 10000);
string save_name = getsenv("save_name", "_filter");
int report_every = getienv("report_every", 100);
int test_every = getienv("test_every", 10000);
bool use_exact = getienv("use_exact", 0);
// Command to execute after testing the networks performance.
string after_test = getsenv("after_test", "");
double best_error = 1e38;
double test_error = 9999.0;
int start = clstm.net->attr.get("trial", getienv("start", -1)) + 1;
if (start > 0) print("start", start);
for (int trial = start; trial < ntrain; trial++) {
int sample = lrand48() % samples.size();
if (trial > 0 && test_samples.size() > 0 && test_every > 0 &&
trial % test_every == 0) {
double errors = 0.0;
double count = 0.0;
double exact_matches = 0.0;
for (int test = 0; test < test_samples.size(); test++) {
wstring gt = test_samples[test].out;
wstring pred = clstm.predict(test_samples[test].in);
count += gt.size();
errors += levenshtein(pred, gt);
if (pred == gt) exact_matches++;
}
test_error = errors / count;
double exact_test_error = 1.0 - exact_matches / test_samples.size();
print("ERROR", trial, test_error, " ", errors, count, "exact_errors",
exact_test_error, "lrate", lrate, "momentum", momentum, "nhidden",
nhidden);
if (use_exact) test_error = exact_test_error;
if (save_every == 0 && test_error < best_error) {
best_error = test_error;
string fname = save_name + ".clstm";
print("saving best performing network so far", fname, "error rate: ",
best_error);
clstm.net->attr.set("trial", trial);
clstm.save(fname);
}
if (after_test != "") system(after_test.c_str());
}
if (trial > 0 && save_every > 0 && trial % save_every == 0) {
string fname = save_name + "-" + to_string(trial) + ".clstm";
clstm.net->attr.set("trial", trial);
clstm.save(fname);
}
wstring pred = clstm.train(samples[sample].in, samples[sample].out);
if (trial % report_every == 0) {
print("trial", trial);
print("INP", samples[sample].in);
print("TRU", samples[sample].out);
print("ALN", clstm.aligned_utf8());
print("OUT", pred);
}
}
return 0;
}
int main(int argc, char **argv) {
TRY { return main1(argc, argv); }
CATCH(const char *message) { cerr << "FATAL: " << message << endl; }
}