CONLLReader04.java
5.72 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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
package is2.io;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import is2.data.Instances;
import is2.data.SentenceData09;
import is2.util.DB;
/**
* This class reads files in the CONLL-08 and CONLL-09 format.
*
* @author Bernd Bohnet
*/
public class CONLLReader04 {
private static final String US = "_";
private static final String REGEX = "\t";
public static final String STRING = "*";
public static final String PIPE = "\\|";
public static final String NO_TYPE = "<no-type>";
public static final String ROOT_POS = "<root-POS>";
public static final String ROOT_LEMMA = "<root-LEMMA>";
public static final String ROOT = "<root>";
public static final String EMPTY_FEAT = "<ef>";
private static final String NUMBER = "[0-9]+|[0-9]+\\.[0-9]+|[0-9]+[0-9,]+";
private static final String NUM = "<num>";
private BufferedReader inputReader;
public static final int TASK08 = 8;
public static final int TASK09 = 9;
public static boolean normalizeOn = true;
private int lineNumber = 0;
public CONLLReader04() {
}
public CONLLReader04(String file) {
lineNumber = 0;
try {
inputReader = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8"), 32768); // ,"UTF-8"
} catch (Exception e) {
e.printStackTrace();
}
}
public CONLLReader04(String file, int task) {
this(file);
}
public void startReading(String file) {
lineNumber = 0;
try {
inputReader = new BufferedReader(new InputStreamReader(new FileInputStream(file), "UTF-8"), 32768);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* i.forms[heads[l]-1]+" "+rel+" "+ Read a instance
*
* @return a instance
* @throws Exception
*/
public SentenceData09 getNext() throws Exception {
try {
ArrayList<String[]> lineList = new ArrayList<String[]>();
String line = inputReader.readLine();
while (line != null && line.length() < 2) {
line = inputReader.readLine();
lineNumber++;
System.out.println("skip empty line at line " + lineNumber);
}
while (line != null && line.length() != 0 && !line.startsWith(STRING) && !line.startsWith(REGEX)) {
lineList.add(line.split(REGEX));
line = inputReader.readLine();
lineNumber++;
}
int length = lineList.size();
if (length == 0) {
inputReader.close();
return null;
}
SentenceData09 it = new SentenceData09();
// column content
// 1 id
// 2 form
// 3 lemma
// 4 cpos-tag
// 5 pos-tog
// 6 feats
// 7 head
// 8 deprel
it.forms = new String[length + 1];
it.plemmas = new String[length + 1];
it.gpos = new String[length + 1];
it.labels = new String[length + 1];
it.heads = new int[length + 1];
it.pheads = new int[length + 1];
it.plabels = new String[length + 1];
it.ppos = new String[length + 1];
it.lemmas = new String[length + 1];
it.fillp = new String[length + 1];
it.feats = new String[length + 1][];
it.ofeats = new String[length + 1];
it.pfeats = new String[length + 1];
it.forms[0] = ROOT;
it.plemmas[0] = ROOT_LEMMA;
it.fillp[0] = "N";
it.lemmas[0] = ROOT_LEMMA;
it.gpos[0] = ROOT_POS;
it.ppos[0] = ROOT_POS;
it.labels[0] = NO_TYPE;
it.heads[0] = -1;
it.plabels[0] = NO_TYPE;
it.pheads[0] = -1;
it.ofeats[0] = NO_TYPE;
// root is 0 therefore start with 1
for (int i = 1; i <= length; i++) {
String[] info = lineList.get(i - 1);
it.forms[i] = info[0]; // normalize(
it.lemmas[i] = "_";
it.plemmas[i] = "_";
// 3 cpos
it.gpos[i] = info[1];
it.ppos[i] = info[1];
it.ofeats[i] = "_";
it.feats[i] = null;
// it.feats[i] =info[5].split(PIPE);
it.pfeats[i] = "_";
if (info[2].equals(US))
it.heads[i] = -1;
else
it.heads[i] = Integer.parseInt(info[2]);// head
it.labels[i] = info[3];
}
return it;
} catch (Exception e) {
System.out.println("\n!!! Error in input file at line : " + lineNumber + " " + e.toString());
e.printStackTrace();
throw new Exception();
// return null;
}
}
/**
* Read a instance an store it in a compressed format
*
* @param is
* @return
* @throws IOException
*/
final public SentenceData09 getNext(Instances is) throws Exception {
SentenceData09 it = getNext();
if (is != null)
insert(is, it);
return it;
}
final public boolean insert(Instances is, SentenceData09 it) throws IOException {
try {
if (it == null) {
inputReader.close();
return false;
}
int i = is.createInstance09(it.length());
for (int p = 0; p < it.length(); p++) {
is.setForm(i, p, normalize(it.forms[p]));
is.setGPos(i, p, it.gpos[p]);
if (it.ppos[p] == null || it.ppos[p].equals(US)) {
is.setPPoss(i, p, it.gpos[p]);
} else
is.setPPoss(i, p, it.ppos[p]);
if (it.plemmas[p] == null || it.plemmas[p].equals(US)) {
is.setLemma(i, p, normalize(it.forms[p]));
} else
is.setLemma(i, p, normalize(it.plemmas[p]));
is.setFeats(i, p, it.feats[p]);
is.setFeature(i, p, it.ofeats[p]);
is.setRel(i, p, it.labels[p]);
if (it.plabels != null)
is.setPRel(i, p, it.plabels[p]);
is.setHead(i, p, it.heads[p]);
if (it.pheads != null)
is.setPHead(i, p, it.pheads[p]);
if (it.fillp != null && it.fillp[p] != null && it.fillp[p].startsWith("Y"))
is.pfill[i].set(p);
else
is.pfill[i].clear(p);
}
if (is.createSem(i, it)) {
DB.println("count " + i + " len " + it.length());
DB.println(it.printSem());
}
} catch (Exception e) {
DB.println("head " + it);
e.printStackTrace();
}
return true;
}
public static String normalize(String s) {
if (!normalizeOn)
return s;
if (s.matches(NUMBER))
return NUM;
return s;
}
}