largescale_segmentation.py
16.4 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
from lxml import etree
import xml_utils
import os, sys
#from nltk import tokenize
import srx_segmenter
import codecs
import settings
class LogicError(Exception):
pass
IGNORE_LACK_OF_IDS = True
# tymczasowo:
structure_path = ""
# tagi na ktorych otwieramy nowe akapity:
# dowolny tag w ramach front i back poza:
# pb
# figure
# note
# fw
#
# w body:
# head
# p
#
block_list = ["front", "body", "titlePage", "back"]
para_list = ["p", "head", "docTitle", "docImprint", "docAuthor", "docEdition", "u"]
# latajace swobodnie cokolwiek tekstowego (poza zasiegiem powyzszych):
# figure
# fw
# note
# (zwykly tekst)
def get_string_value(element):
text = element.text or ''
for child in element:
text += get_string_value(child)
text += element.tail or ''
return text
def teins(x):
return "{%s}" % xml_utils.namespaces['tei']+x
def xmlns(x):
return "{%s}" % xml_utils.namespaces['xml']+x
def extract_tag(x):
return x[x.find("}")+1:]
def end_par(paras, cur_par):
if cur_par[0] and len(cur_par[0]) > 0:
paras[0].append(cur_par[0])
cur_par[0] = None
if len(paras[1]) > 0:
paras[0].extend(paras[1])
del paras[1][:]
if len(paras[1]) > 0:
raise LogicError("odwleczone akapity istnieja pomimo, ze nie ma aktualnego akapitu")
def id_or_none(elem, optional = False):
if not IGNORE_LACK_OF_IDS and not optional and xmlns("id") not in elem.attrib:
raise LogicError("brak xml:id w " + etree.tostring(elem, encoding = "utf-8"))
return elem.attrib[xmlns("id")] if xmlns("id") in elem.attrib else None
def obtain_inner_text(elem, parentid, paras, cur_par, in_par, text_expected = True):
offset = 0
if elem.text:
if cur_par[0] is None:
if text_expected:
cur_par[0] = []
elif len(elem.text.strip()) > 0:
raise LogicError("niespodziewany tekst w " + etree.tostring(elem, encoding = "utf-8"))
if cur_par[0] is not None:
cur_par[0].append({'id': parentid, 'text' : elem.text, 'xml_offset' : 0})
offset += len(elem.text)
for child in elem.iterchildren():
process_elt(child, paras, cur_par, in_par)
offset += len(get_string_value(child))
if child.tail:
if cur_par[0] is None:
if text_expected:
cur_par[0] = []
elif len(child.tail.strip()) > 0:
raise LogicError("niespodziewany tekst w " + etree.tostring(elem, encoding = "utf-8"))
if cur_par[0] is not None:
cur_par[0].append({'id': parentid, 'text' : child.tail, 'xml_offset' : offset-len(child.tail)})
# offset += len(child.tail) # Niepotrzebnie doliczana długość tekstu, skoro była doliczona w get_string_value(child)...
def process_elt(elem, paras, cur_par, in_par = False):
#print("PE:", structure_path)
#print(etree.tostring(elem))
# "div" w głównych tekstach powinien być traktowany jako blok, w próbkach - jako akapit
if settings.FNAME == 'text.xml':
para_list.append("div")
else:
block_list.append("div")
if elem.tag in [teins(x) for x in block_list]:
end_par(paras, cur_par)
for child in elem.iterchildren():
process_elt(child, paras, cur_par, in_par)
#Dodanie tu 'ab' dla obsługi tekstów próbek spowoduje potraktowanie ich jak 'p' (pojedyncze próbki) -
#trzeba potem przy imporcie pozbierać te 'p' we właściwe próbki - uwaga! nie każdy element ma id!
elif elem.tag in [teins(x) for x in para_list]:
new_in_par = in_par
if not in_par:
end_par(paras, cur_par)
cur_par[0] = []
if elem.tag == teins("p"):
new_in_par = True
#elif elem.tag == teins("p"):
#print("plik:", structure_path)
#print(etree.tostring(elem, encoding = "utf-8"))
obtain_inner_text(elem, id_or_none(elem), paras, cur_par, new_in_par)
if not in_par:
end_par(paras, cur_par)
#Dodanie tu 'ab' dla obsługi tekstów próbek spowoduje pominięcie tagów - wyjdzie próbka zgodna z formatem NKJP
elif elem.tag in [teins(x) for x in ("ab", "titlePart", "docDate", "pubPlace", "publisher", "table", "row", "cell", "interp", "num")]:
obtain_inner_text(elem, id_or_none(elem), paras, cur_par, in_par)
elif elem.tag in [teins(x) for x in ['pb', "list", "item"]]:
pass
elif elem.tag == teins('foreign'):
if elem.text is None and len(list(elem.iterchildren())) == 0:
if xmlns("lang") in elem.attrib and elem.attrib[xmlns("lang")] == "x-nlws":
if cur_par[0] is not None:
cur_par[0].append({"text" : None, "id" : id_or_none(elem, True), "type" : "foreign/nonlatin"})
else:
if cur_par[0] is None:
raise LogicError("bledne foreign "+etree.tostring(elem, encoding = "utf-8"))
# foreign lapiemy na boku a potem ustawiamy flage type dla calej zawartosci
aparas = ([],[])
acur_par = [[]]
obtain_inner_text(elem, id_or_none(elem), aparas, acur_par, in_par)
if len(aparas[0]) > 0:
raise LogicError("problem z foreign: zagniezdzony akapit? "+etree.tostring(elem, encoding = "utf-8"))
# Poniżej - jednak nadpisuję zawsze typ elementów podrzędnych na "foreign"
for x in acur_par[0]:
# if "type" not in x:
x["type"] = "foreign"
cur_par[0].append(x)
for adp in aparas[1]:
dp = []
for x in adp:
# if "type" not in x:
x["type"] = "foreign"
dp.append(x)
paras[1].append(dp)
elif elem.tag == teins('choice'):
choices = list(elem.iterchildren())
if (elem.text and len(elem.text.strip()) > 0) or cur_par is None or len(choices) != 2:
raise LogicError("bledne choice "+etree.tostring(elem, encoding = "utf-8"))
entry = {"text" : None, "orig_text" : None}
cur_par[0].append(entry)
for c in choices:
if c.tag == teins("orig"):
if entry["orig_text"]:
raise LogicError("bledne choice "+etree.tostring(elem, encoding = "utf-8"))
entry["orig_text"] = c.text
entry["orig_id"] = id_or_none(c)
elif c.tag == teins("reg"):
if entry["text"]:
raise LogicError("bledne choice "+etree.tostring(elem, encoding = "utf-8"))
entry["text"] = c.text
entry["xml_offset"] = 0
entry["id"] = id_or_none(c)
else:
raise LogicError("bledne choice "+etree.tostring(elem, encoding = "utf-8"))
if (c.tail and len(c.tail.strip()) > 0) or len(list(c.iterchildren())) > 0:
raise LogicError("bledne choice "+etree.tostring(elem, encoding = "utf-8"))
elif elem.tag == teins("fw"):
aparas = ([], [])
acur_par = [[]]
obtain_inner_text(elem, id_or_none(elem), aparas, acur_par, in_par)
if len(aparas[0]) > 0 or len(aparas[1]) > 0:
raise LogicError("bledny fw "+etree.tostring(elem, encoding = "utf-8"))
# zywe paginy wyrzucam poza (za) aktualny akapit (jesli jestesmy w akapicie)
if cur_par[0] is not None:
paras[1].append(acur_par[0])
else:
paras[0].append(acur_par[0])
elif elem.tag == teins("note"):
aparas = ([], [])
acur_par = [[]]
obtain_inner_text(elem, id_or_none(elem, True), aparas, acur_par, in_par)
if xmlns("id") not in elem.attrib and not IGNORE_LACK_OF_IDS:
if len(acur_par[0]) > 0:
raise LogicError("bledne note " +etree.tostring(elem, encoding = "utf-8"))
else:
if len(aparas[0]) > 0 or len(aparas[1]) > 0:
raise LogicError("bledne note "+etree.tostring(elem, encoding = "utf-8"))
# notki wyrzucam poza (za) aktualny akapit (jesli jestesmy w akapicie)
if cur_par[0] is not None:
paras[1].append(acur_par[0])
else:
paras[0].append(acur_par[0])
elif elem.tag in [teins(x) for x in ["figure", "formula", "notatedMusic", "span", "g"]]: # wyrzucone "uncertain", dorzucone "g"
if cur_par[0] is None:
cur_par[0] = []
cur_par[0].append({"text" : None, "id" : id_or_none(elem, True), "type" : extract_tag(elem.tag)})
# elif elem.tag == teins("g"):
# entry = {"text" : "¤", "id" : None, "type" : extract_tag(elem.tag), "xml_offset" : 0}
# if cur_par[0] is not None:
# cur_par[0].append(entry)
# else:
# paras[0].append([entry])
elif elem.tag in [teins(x) for x in ["gap"]]:
if cur_par[0] is None:
cur_par[0] = []
cur_par[0].append({"text" : None, "id" : None, "type" : extract_tag(elem.tag)})
# dodane "uncertain"
elif elem.tag in [teins(x) for x in ["sic", "uncertain", "unclear", "stage", "quote"]]: #== teins('sic'):
if cur_par[0] is None:
raise LogicError("bledne sic "+etree.tostring(elem, encoding = "utf-8"))
obtain_inner_text(elem, id_or_none(elem), paras, cur_par, in_par)
#Dopisanie "type"
cur_par[0][-1]["type"] = extract_tag(elem.tag)
else:
raise LogicError("nieznany tag "+elem.tag)
def do_segmentation(plaintext, rules):
segmenter = srx_segmenter.SrxSegmenter(rules["Polish"], plaintext)
sents, whitespaces = segmenter.extract()
#sents = tokenize.sent_tokenize(plaintext)
return sents
def make_sents(parafrags, srx_rules):
plaintext = ""
for f in parafrags:
start = len(plaintext)
if "text" in f and f["text"]:
plaintext += f["text"]
f["start"] = start
f["end"] = len(plaintext)
#print(repr(f))
#print
#print
#for i, f in enumerate(parafrags):
#print(i, repr(f["text"]) if 'text' in f else '>/>')
#print()
sent_list = do_segmentation(plaintext, srx_rules)
plainpos = 0
sent_frags = []
last_frag = 0
for sent in sent_list:
sentpos = 0
if len(sent.strip()) > 0:
plainsent = sent.lstrip()
while plaintext[plainpos] != plainsent[sentpos] and len(plaintext[plainpos].strip()) == 0:
plainpos += 1
if plainpos > len(plaintext):
raise LogicError("tekst sie skonczyl przedwczesnie, "+str(plainpos)+", "+plaintext+", "+sentpos+". "+plainsent)
start = plainpos
while sentpos < len(plainsent):
if plainpos > len(plaintext):
raise LogicError("tekst sie skonczyl przedwczesnie, "+str(plainpos)+", "+plaintext+", "+sentpos+". "+plainsent)
if plaintext[plainpos] != plainsent[sentpos]:
raise LogicError("konflikt na tekscie, "+str(plainpos)+", "+plaintext+", "+sentpos+". "+plainsent)
sentpos += 1
plainpos += 1
end = plainpos
# print(plainsent)
# print(start, end)
# print(last_frag)
# print(repr(plaintext[start:end]))
# print(repr(parafrags[last_frag]))
frags = []
while last_frag < len(parafrags) and parafrags[last_frag]["start"] <= end:
frg = parafrags[last_frag]
frg['end_space'] = False
if frg["start"] >= start and frg["end"] <= end:
#print(">>>>>", parafrags[last_frag]["text"])
last_frag += 1
if "text" in frg:
frg["offset"] = 0
frags.append(frg)
#print("+zero")
elif frg["end"] <= end:
#print(">>>>>", parafrags[last_frag]["text"])
last_frag += 1
nfrg = {"text" : None}
if frg["text"]:
offset = start-frg["start"]
nfrg["text"] = frg["text"][offset:]
nfrg["offset"] = offset
if "orig_text" in frg:
nfrg["orig_text"] = frg["orig_text"][offset:l]
nfrg["id"] = frg["id"]
if "orig_id" in frg:
nfrg["orig_id"] = frg["orig_id"]
if "type" in frg:
nfrg["type"] = frg["type"]
if "xml_offset" in frg:
nfrg["xml_offset"] = frg["xml_offset"]
nfrg["end_space"] = frg["end_space"]
frags.append(nfrg)
#print("+jeden")
else:
#print(">>>>>", parafrags[last_frag]["text"])
nfrg = {"text" : None}
if frg["text"]:
offset = 0 if frg["start"] >= start else start-frg["start"]
l = end-frg["start"]
nfrg["text"] = frg["text"][offset:l]
nfrg["offset"] = offset
if "orig_text" in frg:
nfrg["orig_text"] = frg["orig_text"][offset:l]
nfrg["id"] = frg["id"]
if "orig_id" in frg:
nfrg["orig_id"] = frg["orig_id"]
if "type" in frg:
nfrg["type"] = frg["type"]
if "xml_offset" in frg:
nfrg["xml_offset"] = frg["xml_offset"]
nfrg["end_space"] = True
frags.append(nfrg)
#print("+dwa")
break
if frags[-1]["text"] is not None and "offset" not in frags[-1]:
print(repr(frags[-1]))
raise LogicError("brak offsetu?!")
#print(len(frags))
#print()
#print(plainsent)
sent_frags.append(frags)
#print("po",len(frags))
#print([f["text"] for f in frags])
#print()
#print()
while last_frag < len(parafrags) and parafrags[last_frag]["text"]:
pad = parafrags[last_frag]["text"][end-parafrags[last_frag]["start"]:]
#print(last_frag,">>", repr(pad))
if len(pad) > 0 and len(pad.strip()) == 0:
last_frag += 1
end = 0
else:
break
if len(sent_frags) == 0 and len(parafrags) > 0:
sent_frags.append([])
if len(parafrags[last_frag:]) > 0:
sent_frags[-1].extend(parafrags[last_frag:])
filtered_frags = []
for s in sent_frags:
nf = []
for f in s:
if f["text"] is not None and len(f["text"].strip()) == 0:
if len(nf) > 0:
nf[-1]["end_space"] = True
elif f["text"] is None or len(f["text"].strip()) > 0:
nf.append(f)
#print repr(f)
if f["text"] is not None and "offset" not in f:
print(repr(f))
raise LogicError("??")
if len(nf) > 0:
filtered_frags.append(nf)
return filtered_frags, sent_list
def parse_file(path, srx_rules):
global structure_path
#print(path)
#structure_path = os.path.join(path, 'text_structure.xml')
structure_path = os.path.join(path, settings.SUBFOL, settings.FNAME)
text_tree = etree.parse(structure_path)
paras = ([], [])
cur_par = [None]
text = list(text_tree.xpath("tei:TEI/tei:text", namespaces=xml_utils.namespaces))
if len(text) != 1:
raise LogicError("bledne TEI\n\n" + str(text))
for elem in text[0].iterchildren():
process_elt(elem, paras, cur_par)
end_par(paras, cur_par)
parasents = []
paralist = []
for para in paras[0]:
if len(para) == 0:
continue
paras, plainsents = make_sents(para, srx_rules)
parasents.append(paras)
paralist.append(plainsents)
# TODO tymczasowe wypluwanie zdan prostym tekstem na potrzeby inspekcji segmentacji zdaniowej
#plaintext_path = os.path.join(path, 'zdania.txt')
#fo = codecs.open(plaintext_path, "w")
#for sent_list in paralist:
#for s in sent_list:
#print(s.strip()+"\n", file = fo)
#print("\n\n\n", file = fo)
#fo.close()
return parasents