auto_derivatives.py
7.99 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
# -*- coding: utf-8 -*-
from dictionary.models import Lexeme, Inflection, Gender, LexemeAttribute, \
LexemeAttributeValue, REVERSE_CR_TYPE
from patterns.models import Pattern, Ending
VOWELS = u'aeiouyąęó'
ADJ_POS = ('ppas', 'appas', 'pact', 'adjcom', 'nieadj')
Ppact = Pattern.objects.get(name='P2') # hardcoded pattern
Pppas_ty = Pattern.objects.get(name='P4t')
Pppas_ny_ni = Pattern.objects.get(name='P4')
Pppas_ony_eni = Pattern.objects.get(name='P4no')
Pppas_iony_ieni = Pattern.objects.get(name='P4noi')
Pger_nie = Pattern.objects.get(name='C1n')
Pger_cie = Pattern.objects.get(name='C1c')
Posc = Pattern.objects.get(name='D1ć0+i')
Pcom = Pattern.objects.get(name='P4zs')
Pndm = Pattern.objects.get(name='ndm')
n2 = Gender.objects.get(symbol='n2')
f = Gender.objects.get(symbol='f')
ATTR_POPRZ = LexemeAttribute.objects.get(name=u'forma poprz.')
ATTR_ZLOZ = LexemeAttribute.objects.get(name=u'forma złoż.')
NO_POPRZ = LexemeAttributeValue.objects.get(
value=u'nieobecna', attribute__name=u'forma poprz.')
NO_ZLOZ = LexemeAttributeValue.objects.get(
value=u'nieobecna', attribute__name=u'forma złoż.')
def ppas_data(inflections, pos='ppas'):
for inflection in inflections:
pattern = inflection.pattern
endings10 = Ending.objects.filter(
pattern=pattern, base_form_label__symbol='10')
endings12 = Ending.objects.filter(
pattern=pattern, base_form_label__symbol='12')
for ending in endings10:
for ending12 in endings12:
yield {
'pos': pos,
'cr_type': 'verppas',
'entry': inflection.root + ending.string + 'y',
'pl': inflection.root + ending12.string,
'index': inflection.index,
}
def pact_data(inflections):
for inflection in inflections:
pattern = inflection.pattern
endings3 = Ending.objects.filter(
pattern=pattern, base_form_label__symbol='3')
for ending in endings3:
yield {
'pos': 'pact',
'cr_type': 'verpact',
'entry': inflection.root + ending.string + 'cy',
'index': inflection.index,
}
def ger_data(inflections):
for inflection in inflections:
pattern = inflection.pattern
endings11 = Ending.objects.filter(
pattern=pattern, base_form_label__symbol='11')
for ending in endings11:
yield {
'pos': 'ger',
'cr_type': 'verger',
'entry': inflection.root + ending.string + 'ie',
'index': inflection.index,
}
def guess_osc(s):
if s[-1] == 'i':
if s[-2] in VOWELS:
base = s[:-1] + u'j'
elif s[-2] in u'gkl':
base = s[:-1]
else:
base = s
elif s[-1] == u'y':
base = s[:-1]
elif s[-2:] in [u'ek', u'en']:
base = s[:-2] + s[-1]
elif s[-2:] in [u'ój', u'ów']:
base = s[:-2] + u'o' + s[-1]
else:
base = s
return base + u'ość'
def make_negation(s):
if s[0].islower():
return u'nie' + s
else:
return u'nie-' + s
def lexeme_derivatives(lexeme):
inflections = list(lexeme.inflection_set.all())
if not inflections:
return
if lexeme.part_of_speech.symbol == 'v':
proper = lexeme.lexemeattributevalue_set.filter(
attribute__name=u'właściwy', value__in=('', '(Q)'))
if proper:
trans = lexeme.lexemeattributevalue_set.filter(
attribute__name=u'przechodniość', value='T')
q_trans = lexeme.lexemeattributevalue_set.filter(
attribute__name=u'przechodniość', value='qT')
imperf = lexeme.lexemeattributevalue_set.filter(
attribute__name=u'aspekt').exclude(value='dk')
if trans or q_trans:
pos = 'ppas' if trans else 'appas'
for data in ppas_data(inflections, pos):
yield data
if imperf:
for data in pact_data(inflections):
yield data
for data in ger_data(inflections):
yield data
elif lexeme.part_of_speech.symbol == 'adj':
# adjcom, adv, advcom, osc, nieadj
pos_types = (
('adjcom', 'adjcom'),
('adv', 'adjadv'),
('advcom', 'adjadvc')
)
for pos, cr_type in pos_types:
yield {
'pos': pos,
'cr_type': cr_type,
'entry': None,
'index': 1,
}
yield {
'pos': 'osc',
'cr_type': 'adjosc',
'entry': guess_osc(lexeme.entry),
'index': 1,
}
yield {
'pos': 'adj',
'cr_type': 'adjnie',
'entry': make_negation(lexeme.entry),
'index': 1,
}
def create_derivative(lexeme, part_of_speech, cr_type, entry, index, pl=None):
negation = cr_type.endswith('nie')
der = Lexeme.objects.create(
entry=entry, part_of_speech_id=part_of_speech, status=lexeme.status,
owner_vocabulary_id=lexeme.owner_vocabulary_id,
specialist=lexeme.specialist,
borrowing_source_id=lexeme.borrowing_source_id)
der.fix_homonym_number()
lexeme.owner_vocabulary.add_lexeme(der)
if not negation:
inflection = Inflection(lexeme=der, index=1)
if part_of_speech in ('ppas', 'appas'):
# -ty/-ci
if entry.endswith('ty'):
inflection.pattern = Pppas_ty
# -iony/-eni
elif entry.endswith('iony') and not pl.endswith('ieni'):
inflection.pattern = Pppas_iony_ieni
# -ony/-eni
elif entry.endswith('eni'):
inflection.pattern = Pppas_ony_eni
# -ny/-ni
else:
inflection.pattern = Pppas_ny_ni
elif part_of_speech == 'pact':
inflection.pattern = Ppact
elif part_of_speech == 'ger':
inflection.gender = n2
if entry.endswith('cie'):
inflection.pattern = Pger_cie
else: # -nie
inflection.pattern = Pger_nie
elif part_of_speech == 'osc':
inflection.pattern = Posc
inflection.gender = f
elif part_of_speech == 'adjcom':
inflection.pattern = Pcom
elif part_of_speech in ('adv', 'advcom'):
inflection.pattern = Pndm
inflection.root = inflection.get_root()
inflection.save()
orig_inflection = Inflection.objects.get(lexeme=lexeme, index=index)
# może kopiować kwalifikatory odmieniasia do leksemu?
for q in orig_inflection.qualifiers.all():
inflection.qualifiers.add(q) # der zamiast inflection?
else:
for orig_inflection in lexeme.inflection_set.all():
inflection = Inflection(
lexeme=der, index=orig_inflection.index,
pattern=orig_inflection.pattern,
gender=orig_inflection.gender)
inflection.root = inflection.get_root()
inflection.save()
for q in orig_inflection.qualifiers.all():
inflection.qualifiers.add(q)
for attr, attr_val in lexeme.attributes_values():
if attr not in (ATTR_POPRZ, ATTR_ZLOZ) and attr_val \
and attr.parts_of_speech.filter(symbol=part_of_speech):
attr_val.add_lexeme(der)
if part_of_speech in ('ppas', 'appas', 'pact', 'adjcom', 'nieadj'):
NO_POPRZ.add_lexeme(der)
NO_ZLOZ.add_lexeme(der)
for q in lexeme.qualifiers.all():
der.qualifiers.add(q)
lexeme.add_cross_reference(der, cr_type)
der.add_cross_reference(lexeme, REVERSE_CR_TYPE[cr_type])
der.refresh_data()
new_lexemes = [der]
if cr_type in ('adjosc', 'adjadv'):
new_lexemes.extend(create_derivative(
der, part_of_speech, 'adjnie', make_negation(entry),
index))
return new_lexemes