-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlexicon.cl
392 lines (345 loc) · 11.8 KB
/
lexicon.cl
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; ;;;;
;;;; ;;;;
;;;; ;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(in-package :sfy)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; CHECK-FRAME
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun check-frame (predicate-name)
;;
;; PREDICATE-SPEC (based on FULL-PRED-DICT-01) will be
;; taken from the format:
;; abstr_deg_rel : ARG0 x.
;; appos_rel : ARG0 e, ARG1 x { NUM pl }, ARG2 i.
;; comp_rel : ARG0 e, [ ARG1 u ], [ ARG2 u ].
;; etc.
;;
;; and returned in the list format:
;; '(abstr_deg_rel ARG0)
;; '(appos_rel ARG0 ARG1 NUM ARG2)
;; '(comp_rel ARG0 ARG1 ARG2)
;; etc.
;;
(verbose-mode-only
(format nil
"check-frame:~% A list of new frames to be added:~%"))
(let ((specs-list (get-full-args-for-pred
predicate-name)))
(verbose-mode-only
(format nil
" get-full-args-for-pred returned the following list:~% ~A~%"
specs-list))
(loop
for specs in specs-list
do
(setf frame-definition
(format nil "define-frame ~A_~A(PRED_NAME HANDLE"
(car specs)
(1+ (length specs))))
(loop
for tok in (cdr specs)
do
(setf frame-definition
(format nil "~A ~A" frame-definition tok))
)
(setf frame-definition
(format nil "~A)." frame-definition))
(verbose-mode-only (format nil " ~A" frame-definition))
(sntell (format nil "~A" frame-definition))
(setf *predicate-directory*
(acons (intern predicate-name)
frame-definition
*predicate-directory*))
)
)
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; VERIFY-WORDS
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun verify-words (sentence)
(setf left-half "")
(setf right-half "")
(let ((word-list
(split-subseq-seq " " (string-trim '(#\space #\tab #\newline) sentence))))
(loop
for word-token in word-list
do
(format t "~%~A~%----~%" word-token)
(let ((word-forms (lemmatize-word word-token)))
(cond
((assoc word-token *known-word-list*)
(format t "Found in KNOWN-WORD-LIST~%"))
((check-lexicon-files word-forms)
(format t "Found in ERG lexicon~%"))
((get-wordnet-synonym-values word-forms)
;;((pull-wordnet-entry word-forms)
(format t "Found in WordNet~%"))
(t (let* ((trimmed-sentence (string-trim
'(#\space #\tab #\newline)
sentence))
(splits (split-subseq-seq
word-token
trimmed-sentence))
(first-word (car (split-subseq-seq
" "
trimmed-sentence)))
(last-word (car (reverse (split-subseq-seq
" "
trimmed-sentence))))
(lh (if (string= first-word word-token)
""
(car splits)))
(rh (if (string= first-word word-token)
(car splits)
(if (string= last-word word-token)
""
(car (cdr splits))))))
(setf right-half rh)
(setf left-half lh)
(format t "Unknown word~%")
(fill-slot left-half word-token right-half))
)))
;;(format t "Unknown Word: ~A~%" word-forms))))
))
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; FILL-SLOT
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun fill-slot (left-half word-token right-half)
(loop
for slot-filler in *slot-fillers*
do
(let ((temp-sentence
(format nil "~A~A~A" left-half slot-filler right-half)))
;; Parse the temporary sentences
(let ((lkb::*show-parse-p* nil))
(lkb::do-parse-tty temp-sentence)
(verbose-mode-only (format nil "~%~A~%Parse Count: ~A"
temp-sentence
(length lkb::*parse-record*)))
(if (> (length lkb::*parse-record*) 0)
;; Don't forget to lemmatize this slot-filler, eventually
(generate-from-synonym-model word-token slot-filler))
)
)
)
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; LEMMATIZE-WORD
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun lemmatize-word (word-token)
(cons (stem word-token) (cons word-token '()))
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; CHECK-LEXICON-FILES
;;;; It would be nice to separate out this function
;;;; enough to put half of it under file-utils
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun check-lexicon-files (word-forms)
"Using *LEXICON-FILES*, open the lexicon and read its contents until it finds an entry containing the string matching one of the WORD-FORMS. Return that entry."
(setf predicate-spec "")
(loop for filename in *lexicon-files*
do
(if (string= predicate-spec "")
(with-open-file
(input-stream filename :direction :input)
(loop for line = (read-line input-stream nil 'eof)
do
(when (or (eq 'eof line)
(not (string= predicate-spec "")))
(return))
;; If we split across := and get two
;; arguments, set the first to our pred-name
;; and read the next line for the stem value
;; -- if this stem value matches any of the
;; word forms
;; -- return the predicate form
;; if not, keep trucking
(if (cdr (split-subseq-seq
":=" line))
(let ((stem-line
(read-line
input-stream
nil
'eof)))
(loop for word-tok in word-forms
do
(if (string=
(car (cdr
(split-subseq-seq "\"" stem-line)))
word-tok)
(setf *known-word-list*
(acons (car word-forms) t
*known-word-list*)))
)))))))
(assoc (car word-forms) *known-word-list*))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; GET-WORDNET-SYNONYM-VALUES
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun get-wordnet-synonym-values (word-forms)
(setf noun-pos-types '())
(setf verb-pos-types '())
(setf adj-pos-types '())
(setf adv-pos-types '())
(setf noun-pred-names '())
(setf verb-pred-names '())
(setf adj-pred-names '())
(setf adv-pred-names '())
(loop
for word-token in word-forms
do
(let ((synonym-list (get-all-synonyms word-token)))
;;(loop
;; for pos-synonyms in synonym-list
;; do
;; The above loop should be reinstated (perhaps
;; with a more elegant design so we don't have to
;; repeate the same algorithm for each *pos-types assoc
;; list
(let ((pos-synonyms (car synonym-list)))
(loop
for a-synonym in pos-synonyms
do
(let ((pos-and-pred-pairs (get-pos-and-pred a-synonym)))
(loop
for pos-and-pred-pair in pos-and-pred-pairs
do
(let* ((pos-type (car pos-and-pred-pair))
(pred-name (car (cdr pos-and-pred-pair)))
(pos-count (cdr (assoc
(intern pos-type)
noun-pos-types)))
(pred-count (cdr (assoc
(intern pred-name)
noun-pred-names))))
(write-new-lexicon-to-file
(generate-lexicon-entry word-token pos-type pred-name))
(write-new-predicate-to-file
(generate-predicate-entry word-token pred-name))
(setf noun-pos-types
(acons (intern pos-type)
(if pos-count
(+ pos-count 1)
1)
noun-pos-types))
(setf noun-pred-names
(acons (intern pred-name)
(if pred-count
(+ pred-count 1)
1)
noun-pred-names))
)))))))
;;(format t "~%---N POS Types---")
;;(list-assoc-vals-gt-x noun-pos-types 0)
;;(format t "~%---N Pred Names---")
;;(list-assoc-vals-gt-x noun-pred-names 0)
(if (> (length noun-pos-types) 0)
t
nil)
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; GET-ONSET-VALUE
;;;; given a word WORD-TOKEN, return whether the first
;;;; character is a vowel VOC or consonant CON
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun generate-from-synonym-model (word-token a-synonym)
(let ((pos-and-pred-pairs (get-pos-and-pred a-synonym)))
(loop
for pos-and-pred-pair in pos-and-pred-pairs
do
(let* ((pos-type (car pos-and-pred-pair))
(pred-name (car (cdr pos-and-pred-pair))))
(write-new-lexicon-to-file
(generate-lexicon-entry word-token pos-type pred-name))
(write-new-predicate-to-file
(generate-predicate-entry word-token pred-name))
))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; GET-ONSET-VALUE
;;;; given a word WORD-TOKEN, return whether the first
;;;; character is a vowel VOC or consonant CON
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun get-onset-value (word-token)
(case (char word-token 0)
((#\a #\e #\i #\o #\u) "VOC")
(otherwise "CON")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; GENERATE-NEW-PRED-NAME
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun generate-new-pred-name (word-token template-pred-name)
(format nil "~%~A -> ~A" word-token template-pred-name)
(let ((old-word-token (car (split-subseq-seq "_" template-pred-name))))
(string-replace template-pred-name old-word-token word-token)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; GENERATE-LEXICON-ENTRY
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun generate-lexicon-entry (word-token pos-type template-pred-name)
(format nil "~A := ~A &~% [ STEM < \"~A\" >,~% SYNSEM [ LKEYS.KEYREL.~A \"~A\",~% PHON.ONSET ~A ] ]."
(gensym (format nil "~A_~A"
word-token (car (split-subseq-seq "_" pos-type))))
pos-type
word-token
(if (> (length (split-subseq-seq "_pn_" pos-type)) 1)
"CARG"
"PRED")
(generate-new-pred-name word-token template-pred-name)
(get-onset-value word-token)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;
;;;; GENERATE-PREDICATE-ENTRY
;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun generate-predicate-entry (word-token template-pred-name)
(format nil "~A : ~A"
(generate-new-pred-name word-token template-pred-name)
(car (cdr (split-subseq-seq
" : "
(get-full-args-for-pred
(string-upcase
(string-left-trim "_" template-pred-name))))))))