-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo4-ACTR6new.lisp
executable file
·442 lines (375 loc) · 11.2 KB
/
demo4-ACTR6new.lisp
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
434
435
436
437
438
439
440
441
442
(defvar *response* nil)
(defvar *response-time* nil)
(defconstant *unit4-exp-data* '(2.25 2.8 2.3 2.75
2.55 2.95 2.55 2.95 2.69 2.16))
(defvar *demo4-study-set*
'("The painter visited the missionary"
"The missionary refused the painter"
"The painter was chased by the missionary"
"The painter was protected by the sailor"
"The missionary shot the sailor"
"The cannibal questioned the painter"
"The missionary was accused by the painter"
"The cannibal was feared by the missionary"
"The cannibal was accused by the sailor"))
(defvar *demo4-test-set*
'((1 "k" "The painter visited the missionary")
(2 "k" "The painter was refused by the missionary")
(3 "k" "The missionary chased the painter")
(4 "k" "The painter was protected by the sailor")
(5 "d" "The sailor shot the missionary")
(6 "d" "The cannibal was questioned by the painter")
(7 "d" "The missionary accused the painter")
(8 "d" "The missionary was feared by the cannibal")
(9 "d" "The sailor chased the painter")
(10 "k" "The cannibal was accused by the sailor")))
(defun study-sentence (text time)
(if *actr-enabled-p*
(study-sentence-model text time)
(study-sentence-person text time)))
(defun study-sentence-model (text time)
(let ((window (open-exp-window "Sentence Experiment" :visible t :width 500)))
(install-device window)
(add-text-to-exp-window :text text :x 25 :y 150 :width 250)
(proc-display :clear t)
(run-full-time time :real-time t)))
(defun study-sentence-person (text time)
(let ((window (open-exp-window "Sentence Experiment" :visible t :width 500)))
(add-text-to-exp-window :text text :x 25 :y 150 :width 250)
(sleep time)))
(defun test-sentence (test)
(if *actr-enabled-p*
(test-sentence-model test)
(test-sentence-person test)))
(defun test-sentence-model (test)
(let ((window (open-exp-window "Sentence Experiment" :visible t :width 500)))
(install-device window)
(add-text-to-exp-window :text (third test) :x 25 :y 150 :width 250)
(proc-display :clear t)
(setf *response-time* nil)
(setf *response* nil)
(let ((start-time (get-time)))
(run 30 :real-time t)
(setf *response-time* (if *response-time*
(- *response-time* start-time)
30000)))
(list (first test) (/ *response-time* 1000.0)
(string-equal *response* (second test)))))
(defun test-sentence-person (test)
(let ((window (open-exp-window "Sentence Experiment" :visible t :width 500)))
(add-text-to-exp-window :text (third test) :x 25 :y 150 :width 250)
(setf *response-time* nil)
(setf *response* nil)
(sgp :v nil)
(let ((start-time (get-time)))
(while (null *response*)
(allow-event-manager window))
(setf *response-time* (- *response-time* start-time)))
(list (first test) (/ *response-time* 1000.0)
(string-equal *response* (second test)))))
(defun study-sentences (set time)
(dolist (x set)
(study-sentence x time)))
(defun test-sentences (set)
(let ((results nil))
(dolist (x set)
(push (test-sentence x) results))
(mapcar #'cdr (sort results #'< :key #'first))))
(defun do-experiment (&key (in-order t))
(let ((study (if in-order
*demo4-study-set*
(permute-list *demo4-study-set*)))
(tests (if in-order
*demo4-test-set*
(permute-list *demo4-test-set*))))
(reset)
(setf *actr-enabled-p* t)
(study-sentences study 5)
(study-sentence "test" 2)
(report-data (test-sentences tests)))
)
(defun report-data (lis)
(let ((rts (mapcar #'first lis)))
(correlation rts *unit4-exp-data*)
(mean-deviation rts *unit4-exp-data*)
(format t " Active-Active Active-Passive Passive-Active Passive-Passive~%")
(format t "True: ~:{~9,2F (~3s)~}~%" (subseq lis 0 4))
(format t "False:~:{~9,2F (~3s)~}~%" (subseq lis 4 8)))
)
(defmethod rpm-window-key-event-handler ((win rpm-window) key)
(setf *response-time* (get-time))
(setf *response* (string key))
)
(clear-all)
(reset)
(define-model comPro)
;trace-detail changed to 'low' short output
(sgp :v t :esc t :lf 0.15 :ga 0.0 :show-focus t :trace-detail low)
(chunk-type comprehend-sentence agent action object purpose word state)
(chunk-type meaning word)
(add-dm
(painter ISA meaning word "painter")
(missionary ISA meaning word "missionary")
(sailor ISA meaning word "sailor")
(cannibal ISA meaning word "cannibal")
(visit ISA meaning word "visited")
(refuse ISA meaning word "refused")
(chase ISA meaning word "chased")
(shoot ISA meaning word "shot")
(question ISA meaning word "questioned")
(accuse ISA meaning word "accused")
(fear ISA meaning word "feared")
(protect ISA meaning word "protected")
(test ISA meaning word "test")
(goal ISA comprehend-sentence purpose "study"))
(P found-new-word
=goal>
ISA comprehend-sentence
state nil
=visual-location>
ISA visual-location
?visual>
state free
==>
-manual>
=goal>
state "attending"
+visual>
ISA move-attention
screen-pos =visual-location)
(P find-next-word
=goal>
ISA comprehend-sentence
state "find"
==>
+visual-location>
ISA visual-location
> screen-x current
:nearest current
=goal>
state "looking")
(P attend-word
=goal>
ISA comprehend-sentence
state "looking"
=visual-location>
ISA visual-location
?visual>
state free
==>
=goal>
state "attending"
+visual>
ISA move-attention
screen-pos =visual-location)
(P read-word
=goal>
ISA comprehend-sentence
state "attending"
word nil
=visual>
ISA text
value =word
==>
-visual-location>
=goal>
word =word
state "read"
+retrieval>
ISA meaning
word =word)
(P skip-the
=goal>
ISA comprehend-sentence
word "the"
state "read"
==>
=goal>
state "find"
word nil)
(P skip-was
=goal>
ISA comprehend-sentence
word "was"
state "read"
==>
=goal>
state "find"
word nil)
(P respond-to-test
=goal>
ISA comprehend-sentence
word "test"
=retrieval>
ISA meaning
word "test"
==>
-visual>
+goal>
ISA comprehend-sentence
purpose "test")
(P process-first-noun
=goal>
ISA comprehend-sentence
agent nil
action nil
word =word
- word "test"
state "read"
=retrieval>
ISA meaning
word =word
==>
=goal>
agent =retrieval
word nil
state "find")
;production when the word "by" is read to recognize passive voice
;changes the object to the agent word and sets the agent back to nil
(P process-by
=goal>
ISA comprehend-sentence
agent =agent
action =action
word "by"
state "read"
==>
=goal>
object =agent
agent nil
word nil
state "find"
)
;added for passive voice sentences
;when the agent is the last word
(P process-last-word-agent
=goal>
ISA comprehend-sentence
object =object
agent nil
action =action
word =word
state "read"
=retrieval>
ISA meaning
word =word
==>
=goal>
state "sentence-complete"
agent =retrieval)
(P process-verb
=goal>
ISA comprehend-sentence
agent =val
action nil
word =word
state "read"
=retrieval>
ISA meaning
word =word
==>
=goal>
action =retrieval
word nil
state "find")
(P process-last-word-object
=goal>
ISA comprehend-sentence
object nil
agent =agent
action =action
word =word
state "read"
=retrieval>
ISA meaning
word =word
==>
=goal>
state "sentence-complete"
object =retrieval)
(P study-sentence-read-wait
=goal>
ISA comprehend-sentence
state "sentence-complete"
purpose "study"
==>
-visual>
+goal>
ISA comprehend-sentence
purpose "study")
;after reading sentence in test purpose, set purpose to test-respond
;add sentence chunk to retrieval buffer
;request declarative module
(P test-sentence-read-wait
=goal>
ISA comprehend-sentence
state "sentence-complete"
agent =agent
action =action
object =object
purpose "test"
==>
-visual>
+goal>
ISA comprehend-sentence
state "sentence-complete"
agent =agent
action =action
object =object
purpose "test-respond"
+retrieval>
ISA comprehend-sentence
agent =agent
action =action
object =object
purpose "study"
)
;press "k" if the current sentence from test
;was found in the retrieval-buffer
(P respond-to-sentence-true
=goal>
ISA comprehend-sentence
agent =agent
action =action
object =object
purpose "test-respond"
state "sentence-complete"
=retrieval>
ISA comprehend-sentence
agent =agent
action =action
object =object
purpose "study"
==>
-visual>
+manual>
ISA press-key
key "k"
+goal>
ISA comprehend-sentence
purpose "test"
)
;press "d" when current sentence from test
;wasn't found in the retrieval buffer
(P respond-to-sentence-false
=goal>
ISA comprehend-sentence
agent =agent
action =action
object =object
purpose "test-respond"
state "sentence-complete"
?retrieval>
state error
==>
-visual>
+manual>
ISA press-key
key "d"
+goal>
ISA comprehend-sentence
purpose "test"
)
(set-visloc-default isa visual-location :attended new screen-x lowest)
(setf *actr-enabled-p* nil)
(goal-focus goal)