-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmorphologyAnalyzer.py
More file actions
executable file
·196 lines (166 loc) · 6.36 KB
/
morphologyAnalyzer.py
File metadata and controls
executable file
·196 lines (166 loc) · 6.36 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
#!/usr/bin/python3
# PyElly - rule-based tool for analyzing natural language (Python v3.8)
#
# morphologyAnalyzer.py : 11Apr2021 CPM
# ------------------------------------------------------------------------------
# Copyright (c) 2019, Clinton Prentiss Mah
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
"""
morphological analysis
"""
import suffixTreeLogic
import prefixTreeLogic
import ellyConfiguration
import ellyException
import sys
class MorphologyAnalyzer(object):
"""
prefix and suffix handling
attributes:
pref - prefix logic
suff - suffix logic
"""
def __init__ ( self , sufdfn=None , predfn=None ):
"""
initialization
arguments:
self -
sufdfn - suffix logic definition as EllyDefinitionReader
predfn - prefix logic definition
exceptions:
TableFailure on error
"""
self.pref = None
self.suff = None
if not ellyConfiguration.morphologicalStemming:
return
try:
if sufdfn != None:
self.suff = suffixTreeLogic.SuffixTreeLogic(sufdfn)
if predfn != None:
self.pref = prefixTreeLogic.PrefixTreeLogic(predfn)
except ellyException.TableFailure:
print ( 'morphology tree generation FAILed' , file=sys.stderr )
raise ellyException.TableFailure
def analyze ( self , token ):
"""
analyze token
arguments:
self -
token - token to be analyzed
returns:
True if affixes removed, False otherwise
exceptions:
StemmingError
"""
# print ( 'token: ' , token.root )
if self.suff == None and self.pref == None:
return False
rs = token.root[0]
re = token.root[-1]
if rs == '-' or re == '+':
return False
# print ( 'analysis:' , token )
suc = False
if self.suff != None:
if self.suff.match(token):
# print ( 'stemmed token=' , str(token) )
suc = True
# print ( 'suf suc=' , suc )
if self.pref != None:
if self.pref.match(token):
suc = True
# print ( 'pref suc=' , suc )
return suc
#
# unit test
#
if __name__ == '__main__':
import ellyToken
import ellyDefinitionReader
import inflectionStemmerEN
import os,stat
print ( 'morphology test from sys.stdin' )
if not ellyConfiguration.morphologicalStemming:
print ( 'Elly not configured for morphological analysis' )
sys.exit(1)
mode = os.fstat(0).st_mode # sys.stdin file status
intr = not stat.S_ISREG(mode) # flag for reading from keyboard
sfil = sys.argv[1] if len(sys.argv) > 1 else 'default'
pfil = sys.argv[2] if len(sys.argv) > 2 else sfil
base = ellyConfiguration.baseSource + '/'
sdfn = ellyDefinitionReader.EllyDefinitionReader(base + sfil + '.stl.elly')
pdfn = ellyDefinitionReader.EllyDefinitionReader(base + pfil + '.ptl.elly')
if sdfn.error != None or pdfn.error != None:
print ( 'suf error=' , sdfn.error , file=sys.stderr )
print ( 'pre error=' , pdfn.error , file=sys.stderr )
try:
inf = inflectionStemmerEN.InflectionStemmerEN()
mor = MorphologyAnalyzer(sdfn,pdfn)
except ellyException.TableFailure:
print ( 'initialization failed' , file=sys.stderr )
sys.exit(1)
mor.suff.infl = inf # set up root restoration
nfail = 0 # count of instances when root fails to match expectation
ntry = 0 # total number of tries
while True:
if intr:
sys.stdout.write('> ')
sys.stdout.flush()
lin = sys.stdin.readline()
if len(lin) == 0: # EOF check
break
lin = lin.strip()
if len(lin) == 0:
if intr: break # empty line quits look on interactive input
else: continue # but otherwise continues
lin = lin.split(' ')
if len(lin) < 2:
lin.append('-') # should be [ word , root ] tuple
w = lin[0] # unpack
r = lin[1]
if r != '-':
ntry += 1 # input pair to be added to testing
t = ellyToken.EllyToken(w)
# print ( '0o t=' , t )
try:
inf.apply(t) # apply inflectional stemming
except ellyException.StemmingError:
print ( 'stemming error' )
sys.exit(1)
# print ( '1i t=' , t )
if not mor.analyze(t): # apply morphological stemming
msg = 'no morphological change'
else:
msg = ''
# print ( '2m t=' , t )
nr = ''.join(t.root) # resulting root
if nr != r and r != '-':
nfail += 1
print ( 'FAILed: expected' , w , '->' , r , 'not' , nr )
else:
print ( w , '-->>' , t.getPrefixes() , nr , t.getSuffixes() , msg )
if ntry > 0:
print ( nfail , 'FAILures out of' , ntry , 'tests' )