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
|
#include "striped_grammar.h"
#include <iostream>
#include "sentence_pair.h"
using namespace std;
namespace {
inline bool IsWhitespace(char c) { return c == ' ' || c == '\t'; }
inline void SkipWhitespace(const char* buf, int* ptr) {
while (buf[*ptr] && IsWhitespace(buf[*ptr])) { ++(*ptr); }
}
}
void RuleStatistics::ParseRuleStatistics(const char* buf, int start, int end) {
int ptr = start;
counts.clear();
aligns.clear();
while (ptr < end) {
SkipWhitespace(buf, &ptr);
int vstart = ptr;
while(ptr < end && buf[ptr] != '=') ++ptr;
assert(buf[ptr] == '=');
assert(ptr > vstart);
if (buf[vstart] == 'A' && buf[vstart+1] == '=') {
++ptr;
while (ptr < end && !IsWhitespace(buf[ptr])) {
while(ptr < end && buf[ptr] == ',') { ++ptr; }
assert(ptr < end);
vstart = ptr;
while(ptr < end && buf[ptr] != ',' && !IsWhitespace(buf[ptr])) { ++ptr; }
if (ptr > vstart) {
short a, b;
AnnotatedParallelSentence::ReadAlignmentPoint(buf, vstart, ptr, false, &a, &b, 0, 0);
aligns.push_back(make_pair(a,b));
}
}
} else {
int name = FD::Convert(string(buf,vstart,ptr-vstart));
++ptr;
vstart = ptr;
while(ptr < end && !IsWhitespace(buf[ptr])) { ++ptr; }
assert(ptr > vstart);
counts.set_value(name, strtod(buf + vstart, NULL));
}
}
}
ostream& operator<<(ostream& os, const RuleStatistics& s) {
bool needspace = false;
for (SparseVector<float>::const_iterator it = s.counts.begin(); it != s.counts.end(); ++it) {
if (needspace) os << ' '; else needspace = true;
os << FD::Convert(it->first) << '=' << it->second;
}
if (s.aligns.size() > 0) {
os << " A=";
needspace = false;
for (int i = 0; i < s.aligns.size(); ++i) {
if (needspace) os << ','; else needspace = true;
os << s.aligns[i].first << '-' << s.aligns[i].second;
}
}
return os;
}
|