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
|
#include "ff_spans.h"
#include <sstream>
#include <cassert>
#include "filelib.h"
#include "sentence_metadata.h"
#include "lattice.h"
#include "fdict.h"
#include "verbose.h"
using namespace std;
SpanFeatures::SpanFeatures(const string& param) :
kS(TD::Convert("S") * -1),
kX(TD::Convert("X") * -1) {
if (param.size() > 0) {
int lc = 0;
if (!SILENT) { cerr << "Reading word map for SpanFeatures from " << param << endl; }
ReadFile rf(param);
istream& in = *rf.stream();
string line;
vector<WordID> v;
while(in) {
++lc;
getline(in, line);
if (line.empty()) continue;
v.clear();
TD::ConvertSentence(line, &v);
if (v.size() != 2) {
cerr << "Error reading line " << lc << ": " << line << endl;
abort();
}
word2class_[v[0]] = v[1];
}
word2class_[TD::Convert("<s>")] = TD::Convert("BOS");
word2class_[TD::Convert("</s>")] = TD::Convert("EOS");
oov_ = TD::Convert("OOV");
}
}
void SpanFeatures::TraversalFeaturesImpl(const SentenceMetadata& smeta,
const Hypergraph::Edge& edge,
const vector<const void*>& ant_contexts,
SparseVector<double>* features,
SparseVector<double>* estimated_features,
void* context) const {
// char& res = *static_cast<char*>(context);
// res = edge.j_ - edge.i_;
// assert(res >= 0);
assert(edge.j_ < end_span_ids_.size());
assert(edge.j_ >= 0);
features->set_value(end_span_ids_[edge.j_], 1);
assert(edge.i_ < beg_span_ids_.size());
assert(edge.i_ >= 0);
features->set_value(beg_span_ids_[edge.i_], 1);
if (edge.rule_->lhs_ == kS)
features->set_value(span_feats_(edge.i_,edge.j_).second, 1);
else
features->set_value(span_feats_(edge.i_,edge.j_).second, 1);
if (edge.Arity() == 2) {
const TRule& rule = *edge.rule_;
if (rule.f_[0] == kS && rule.f_[1] == kX) {
// char x_width = *static_cast<const char*>(ant_contexts[1]);
}
}
}
WordID SpanFeatures::MapIfNecessary(const WordID& w) const {
if (word2class_.empty()) return w;
map<WordID,WordID>::const_iterator it = word2class_.find(w);
if (it == word2class_.end()) return oov_;
return it->second;
}
void SpanFeatures::PrepareForInput(const SentenceMetadata& smeta) {
const Lattice& lattice = smeta.GetSourceLattice();
const WordID eos = TD::Convert("</s>");
const WordID bos = TD::Convert("<s>");
beg_span_ids_.resize(lattice.size() + 1);
end_span_ids_.resize(lattice.size() + 1);
for (int i = 0; i <= lattice.size(); ++i) {
WordID word = eos;
WordID bword = bos;
if (i > 0)
bword = lattice[i-1][0].label;
bword = MapIfNecessary(bword);
if (i < lattice.size())
word = lattice[i][0].label; // rather arbitrary for lattices
word = MapIfNecessary(word);
ostringstream sfid;
sfid << "ES:" << TD::Convert(word);
end_span_ids_[i] = FD::Convert(sfid.str());
ostringstream bfid;
bfid << "BS:" << TD::Convert(bword);
beg_span_ids_[i] = FD::Convert(bfid.str());
}
span_feats_.resize(lattice.size() + 1, lattice.size() + 1);
for (int i = 0; i <= lattice.size(); ++i) {
WordID bword = bos;
if (i > 0)
bword = lattice[i-1][0].label;
bword = MapIfNecessary(bword);
for (int j = 0; j <= lattice.size(); ++j) {
WordID word = eos;
if (j < lattice.size())
word = lattice[j][0].label;
word = MapIfNecessary(word);
ostringstream pf;
pf << "SS:" << TD::Convert(bword) << "_" << TD::Convert(word);
span_feats_(i,j).first = FD::Convert(pf.str());
span_feats_(i,j).second = FD::Convert("S_" + pf.str());
}
}
}
|