Pipe.java
5.09 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package is2.parser;
import is2.data.Cluster;
import is2.data.DataF;
import is2.data.DataFES;
import is2.data.F2SF;
import is2.data.Instances;
import is2.data.Parse;
import is2.data.PipeGen;
import is2.data.SentenceData09;
import is2.io.CONLLReader09;
import is2.util.OptionsSuper;
import java.io.IOException;
import java.util.ArrayList;
import java.util.concurrent.ExecutorService;
final public class Pipe extends PipeGen {
public Extractor[] extractor;
final public MFO mf = new MFO();
public Cluster cl;
private OptionsSuper options;
public static long timeExtract;
public Pipe(OptionsSuper o) {
options = o;
}
public void createInstances(String file, Instances is)
throws Exception {
CONLLReader09 depReader = new CONLLReader09(file);
mf.register(REL,"<root-type>");
// register at least one predicate since the parsing data might not contain predicates as in
// the Japaness corpus but the development sets contains some
long sl=0;
System.out.print("Registering feature parts of sentence: ");
int ic = 0;
int del = 0;
while (true) {
SentenceData09 instance = depReader.getNext();
if (instance == null) break;
ic++;
sl+=instance.labels.length;
if (ic % 1000 == 0) {
del = outValue(ic, del);
}
String[] labs1 = instance.labels;
for (int i1 = 0; i1 < labs1.length; i1++) mf.register(REL, labs1[i1]);
String[] w = instance.forms;
for (int i1 = 0; i1 < w.length; i1++) mf.register(WORD, depReader.normalize(w[i1]));
w = instance.plemmas;
for (int i1 = 0; i1 < w.length; i1++) mf.register(WORD, depReader.normalize(w[i1]));
w = instance.ppos;
for (int i1 = 0; i1 < w.length; i1++) mf.register(POS, w[i1]);
w = instance.gpos;
for (int i1 = 0; i1 < w.length; i1++) mf.register(POS, w[i1]);
if (instance.feats !=null) {
String fs[][] = instance.feats;
for (int i1 = 0; i1 < fs.length; i1++){
w =fs[i1];
if (w==null) continue;
for (int i2 = 0; i2 < w.length; i2++) mf.register(FEAT, w[i2]);
}
}
if ((ic-1)>options.count) break;
}
del = outValue(ic, del);
System.out.println();
Extractor.initFeatures();
Extractor.maxForm = mf.getFeatureCounter().get(WORD);
if (options.clusterFile==null)cl = new Cluster();
else cl= new Cluster(options.clusterFile, mf,6);
mf.calculateBits();
Extractor.initStat(options.featureCreation);
System.out.println(""+mf.toString());
for(Extractor e : extractor) e.init();
depReader.startReading(file);
int num1 = 0;
is.init(ic, new MFO());
Edges.init(mf.getFeatureCounter().get(POS));
System.out.print("Creating edge filters and read corpus: ");
del = 0;
while (true) {
if (num1 % 100 == 0) del = outValue(num1, del);
SentenceData09 instance1 = depReader.getNext(is);
if (instance1 == null) break;
int last = is.size() - 1;
short[] pos =is.pposs[last];
for (int k = 0; k < is.length(last); k++) {
if (is.heads[last][k] < 0) continue;
Edges.put(pos[is.heads[last][k]],pos[k], is.labels[last][k]);
// Edges.put(pos[k],pos[is.heads[last][k]], is.labels[last][k]);
}
if (!options.allFeatures && num1 > options.count) break;
num1++;
}
del = outValue(num1, del);
System.out.println();
Edges.findDefault();
}
/**
* Creates an instance for outputParses
*
* @param is
* @return
* @throws IOException
*/
protected final SentenceData09 nextInstance(Instances is, CONLLReader09 depReader) throws Exception {
SentenceData09 instance = depReader.getNext(is);
if (instance == null || instance.forms == null) return null;
return instance;
}
public static ExecutorService executerService =java.util.concurrent.Executors.newFixedThreadPool(Parser.THREADS);
public DataFES fillVector(F2SF params, Instances is,int inst, DataFES d, Cluster cluster) throws InterruptedException {
long ts = System.nanoTime();
if (executerService.isShutdown()) executerService =java.util.concurrent.Executors.newCachedThreadPool();
final int length = is.length(inst);
if (d ==null || d.len<length)d = new DataFES(length,mf.getFeatureCounter().get(PipeGen.REL).shortValue());
ArrayList<ParallelExtract> pe = new ArrayList<ParallelExtract>();
for(int i=0;i<Parser.THREADS;i++) pe.add(new ParallelExtract(extractor[i],is, inst, d, (F2SF)params.clone(), cluster));
for (int w1 = 0; w1 < length; w1++) {
for (int w2 =w1+1; w2 < length; w2++) {
if (w1==w2) continue;
ParallelExtract.add(w1, w2);
}
}
// for(int i=0;i<efp.length;i++) efp[i].start();
// for(int i=0;i<efp.length;i++) efp[i].join();
executerService.invokeAll( pe);
timeExtract += (System.nanoTime()-ts);
return d;
}
public double errors( Instances is, int ic, Parse p) {
short[] act = is.heads[ic];
double correct = 0;
// do not count root
for(int i = 1; i < act.length; i++) {
// if (is.ppos[ic] ==null ) System.out.println("mf null"+is.ppos[ic][i]);
if (p.heads[i]==act[i] ){
correct+=0.5;
if (p.labels[i]==is.labels[ic][i] ) correct+=0.5;
}
}
double x = ((double)act.length- 1 - correct );
p.f1 = (double)correct / (double)(act.length-1);
return x;
}
}