-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspacyfunctions.py
More file actions
362 lines (341 loc) · 14.3 KB
/
spacyfunctions.py
File metadata and controls
362 lines (341 loc) · 14.3 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
import spacy
import time
#standard c-tests
def testGen(passage, language, posIncluded=False, lenExclude=2, freq=2, posExclude=['PROPN', 'NUM', 'X', 'SPACE']):
if language == 'chinese':
nlp = spacy.load('zh_core_web_trf')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
if token.pos_ not in posExclude and (('a' or 'e' or 'i' or 'u' or 'y' or 'o') not in ttoken):
ttoken = str(token)
newword, trash = divmod(len(ttoken), 2)
if posIncluded == True:
ttoken = f'{ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = str(token)
elif token.pos_ == 'PUNCT':
ttoken = str(token) + " "
else:
ttoken = str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
elif language == 'korean':
nlp = spacy.load('ko_core_news_lg')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentencecounter = 1
for sent in doc.sents:
counter = 1
for token in sent:
tlen = len(token.text)
if tlen < 2 or token.pos_ in posExclude:
ttoken = str(token)
else:
t = token.tag_
p = token.pos_
l = token.lemma_
suffix_idx = l.find('+')
if suffix_idx:
rlen = len(l[:suffix_idx])
particle = token.text[suffix_idx:]
newword = (rlen // 2) + (rlen % 2)
else:
newword = (tlen // 2) + (tlen % 2)
if counter % freq == 0 and len(token.shape_) > lenExclude and sentencecounter != 1:
if token.pos_ not in posExclude and (('a' or 'e' or 'i' or 'u' or 'y' or 'o') not in token.text):
if posIncluded is True:
ttoken = f' {token.text[:newword]}*{token.text[newword:]}*({token.pos_})'
else:
ttoken = f' {token.text[:newword]}*{token.text[newword:]}*'
else:
ttoken = " " + token.text
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentencecounter = sentencecounter + 1
base = base.lstrip(' ')
return base
elif language == 'portuguese':
nlp = spacy.load('pt_core_news_lg')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f' {ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = " " + ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = " " + ttoken
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
elif language == 'french':
nlp = spacy.load('fr_dep_news_trf')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f' {ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = " " + ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = " " + ttoken
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
elif language == 'german':
nlp = spacy.load('de_dep_news_trf')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f' {ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = " " + ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = " " + ttoken
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
elif language == 'russian':
nlp = spacy.load('ru_core_news_lg')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f' {ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = " " + ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = " " + ttoken
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
elif language == 'spanish':
nlp = spacy.load('es_dep_news_trf')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f' {ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = " " + ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = " " + ttoken
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
elif language == 'japanese':
nlp = spacy.load('ja_core_news_trf')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f'{ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = str(token)
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base
#return basic C-tests in language-specific functions
def chineseGen(passage):
return testGen(passage, 'chinese')
def koreanGen(passage):
EXCLUDED_TAGS = ['PROPN', 'NUM']
nlp = spacy.load('ko_core_news_lg')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentencecounter = 1
for sent in doc.sents:
counter = 1
for token in sent:
tlen = len(token.text)
if tlen < 2 or token.pos_ in EXCLUDED_TAGS:
continue
t = token.tag_
p = token.pos_
l = token.lemma_
print(f'{token.text:{12}} {l:<{12}} {t:{12}} {p:{12}}')
suffix_idx = l.find('+')
if suffix_idx:
rlen = len(l[:suffix_idx])
particle = token.text[suffix_idx:]
return (rlen//2) + (rlen%2)
return (tlen//2) + (tlen%2)
def portugueseGen(passage):
return testGen(passage, 'portuguese')
def frenchGen(passage):
return testGen(passage, 'french')
def germanGen(passage):
return testGen(passage, 'german')
def russianGen(passage):
return testGen(passage, 'russian')
def spanishGen(passage):
return testGen(passage, 'spanish')
def japaneseGen(passage):
return testGen(passage, 'japanese')
#Print all tests to terminal
def printAllTypes(passage, lang):
ctestPos = testGen(passage, lang, True)
ctestnPos = testGen(passage, lang, False)
print(f'Original Passage:\n{passage}\n')
print(f'C-Test (No Parts of Speech):\n{ctestnPos}\n')
print(f'C-Test (Parts of Speech):\n{ctestPos}')
#Print all tests to file
def writeAllTypes(passage, lang, file):
ctestPos = testGen(passage, lang, True)
ctestnPos = testGen(passage, lang, False)
file.write(f'Original Passage:\n{passage}\n')
file.write(f'C-Test (No Parts of Speech):\n{ctestnPos}\n')
file.write(f'C-Test (Parts of Speech):\n{ctestPos}')
def fileTimeMod():
t = time.localtime()
return f'{str(t.tm_year)}-{str(t.tm_mon)}-{str(t.tm_mday)}_{str(t.tm_hour)}-{str(t.tm_min)}'
#deletes whole words
def modularGen(passage, language, posIncluded=False, lenExclude=1, freq=2, posExclude=['PROPN', 'NUM']):
if language == 'portuguese':
nlp = spacy.load('pt_core_news_lg')
doc = nlp(passage)
assert doc.has_annotation("SENT_START")
base = ""
sentcounter = 1
#every word w token.pos >2 gap astrix before+after gap
for sent in doc.sents:
counter = 1
for token in sent:
if counter%freq == 0 and len(token.shape_) > lenExclude and sentcounter != 1:
ttoken = str(token)
if token.pos_ not in posExclude:
newword, trash = divmod(len(ttoken), 2)
if posIncluded is True:
ttoken = f' {ttoken[:newword]}*{ttoken[newword:]}*({token.pos_})'
else:
ttoken = " " + ttoken[:newword] + "*" + ttoken[newword:] + "*"
else:
ttoken = " " + ttoken
elif token.pos_ == 'PUNCT':
ttoken = str(token)
else:
ttoken = " " + str(token)
counter = counter + 1
base = base + ttoken
sentcounter = sentcounter + 1
base = base.lstrip(' ')
#print(doc.text + '\n\n')
return base