-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswartout-gil-kaw95.ps
executable file
·6094 lines (6093 loc) · 129 KB
/
swartout-gil-kaw95.ps
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
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%!PS-Adobe-3.0
%%Title: (Microsoft Word - swartout-gil\311)
%%Creator: (Microsoft Word: LaserWriter 8 8.2.2)
%%CreationDate: (4:01 PM Thursday, April 20, 1995)
%%For: (swartout)
%%Pages: 19
%%DocumentFonts: Times-Bold Times-Italic Times-Roman Courier Courier-Oblique Courier-Bold Helvetica Helvetica-Bold Helvetica-Oblique
%%DocumentNeededFonts: Times-Bold Times-Italic Times-Roman Courier Courier-Oblique Courier-Bold Helvetica Helvetica-Bold Helvetica-Oblique
%%DocumentSuppliedFonts:
%%DocumentData: Clean7Bit
%%PageOrder: Ascend
%%Orientation: Portrait
%%DocumentMedia: Default 612 792 0 () ()
%ADO_ImageableArea: 12 12 600 780
%%EndComments
userdict begin/dscInfo 5 dict dup begin
/Title(Microsoft Word - swartout-gil\311)def
/Creator(Microsoft Word: LaserWriter 8 8.2.2)def
/CreationDate(4:01 PM Thursday, April 20, 1995)def
/For(swartout)def
/Pages 1 def
end def end
/md 184 dict def md begin/currentpacking where {pop /sc_oldpacking currentpacking def true setpacking}if
%%BeginFile: adobe_psp_basic
%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved.
/bd{bind def}bind def
/xdf{exch def}bd
/xs{exch store}bd
/ld{load def}bd
/Z{0 def}bd
/T/true
/F/false
/:L/lineto
/lw/setlinewidth
/:M/moveto
/rl/rlineto
/rm/rmoveto
/:C/curveto
/:T/translate
/:K/closepath
/:mf/makefont
/gS/gsave
/gR/grestore
/np/newpath
14{ld}repeat
/$m matrix def
/av 81 def
/por true def
/normland false def
/psb-nosave{}bd
/pse-nosave{}bd
/us Z
/psb{/us save store}bd
/pse{us restore}bd
/level2
/languagelevel where
{
pop languagelevel 2 ge
}{
false
}ifelse
def
/featurecleanup
{
stopped
cleartomark
countdictstack exch sub dup 0 gt
{
{end}repeat
}{
pop
}ifelse
}bd
/noload Z
/startnoload
{
{/noload save store}if
}bd
/endnoload
{
{noload restore}if
}bd
level2 startnoload
/setjob
{
statusdict/jobname 3 -1 roll put
}bd
/setcopies
{
userdict/#copies 3 -1 roll put
}bd
level2 endnoload level2 not startnoload
/setjob
{
1 dict begin/JobName xdf currentdict end setuserparams
}bd
/setcopies
{
1 dict begin/NumCopies xdf currentdict end setpagedevice
}bd
level2 not endnoload
/pm Z
/mT Z
/sD Z
/realshowpage Z
/initializepage
{
/pm save store mT concat
}bd
/endp
{
pm restore showpage
}def
/$c/DeviceRGB def
/rectclip where
{
pop/rC/rectclip ld
}{
/rC
{
np 4 2 roll
:M
1 index 0 rl
0 exch rl
neg 0 rl
:K
clip np
}bd
}ifelse
/rectfill where
{
pop/rF/rectfill ld
}{
/rF
{
gS
np
4 2 roll
:M
1 index 0 rl
0 exch rl
neg 0 rl
fill
gR
}bd
}ifelse
/rectstroke where
{
pop/rS/rectstroke ld
}{
/rS
{
gS
np
4 2 roll
:M
1 index 0 rl
0 exch rl
neg 0 rl
:K
stroke
gR
}bd
}ifelse
%%EndFile
%%BeginFile: adobe_psp_colorspace_level1
%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved.
/G/setgray ld
/:F/setrgbcolor ld
%%EndFile
level2 startnoload
%%BeginFile: adobe_psp_patterns_level1
%%Copyright: Copyright 1991-1993 Adobe Systems Incorporated. All Rights Reserved.
/patfreq Z
/patangle Z
/bk Z
/fg Z
/docolorscreen Z
/graystring Z
/pattransf{}def
/initQDpatterns
{
/patfreq 9.375 store
/patangle
1 0 $m defaultmatrix dtransform
exch atan
por not
{90 add}if
normland{180 add}if
store
:a
}def
/docolorscreen
/setcolorscreen where
{
pop/currentcolorscreen where
{
pop/setcmykcolor where
{
pop true
}{
false
}ifelse
}{
false
}ifelse
}{
false
}ifelse
def
/setgraypattern
{
/graystring xs
patfreq
patangle
{
1 add
4 mul
cvi
graystring
exch get
exch
1 add 4 mul
cvi
7 sub
bitshift
1 and
}setscreen
64 div setgray
}bd
/:b
{
/pattransf load settransfer
pop pop pop
setgraypattern
}bd
docolorscreen startnoload
/screensave 5 array def
/:a{currentgray currentscreen currenttransfer screensave astore pop}bd
/:e{screensave aload pop settransfer setscreen setgray}bd
/:d
{
pop pop pop
/pattransf load settransfer
setgraypattern 8{pop}repeat
}bd
/:c
/:d ld
docolorscreen endnoload docolorscreen not startnoload
/screensave 20 array def
/:a{currentcmykcolor currentcolorscreen currentcolortransfer screensave astore pop}bd
/:e{screensave aload pop setcolortransfer setcolorscreen setcmykcolor}bd
/rstring Z
/grstring Z
/blstring Z
/convroll{64 div 4 -1 roll}bd
/setcolorpattern
{
/graystring xs
/blstring xs
/grstring xs
/rstring xs
patfreq
patangle
{
1 add 4 mul cvi rstring
exch get exch 1 add 4 mul
cvi 7 sub bitshift 1 and
}
patfreq
patangle
{
1 add 4 mul cvi grstring
exch get exch 1 add 4 mul
cvi 7 sub bitshift 1 and
}
patfreq
patangle
{
1 add 4 mul cvi blstring
exch get exch 1 add 4 mul
cvi 7 sub bitshift 1 and
}
patfreq
patangle
{
1 add 4 mul cvi graystring
exch get exch 1 add 4 mul
cvi 7 sub bitshift 1 and
}
setcolorscreen
convroll convroll convroll convroll
setcmykcolor
}bd
/:d
{
pop pop pop
/pattransf load settransfer
pop pop setcolorpattern
}bd
/:c
/:d ld
docolorscreen not endnoload
%%EndFile
level2 endnoload level2 not startnoload
%%BeginFile: adobe_psp_patterns_level2
%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved.
/pmtx Z
/BGnd Z
/FGnd Z
/PaintData Z
/PatternMtx Z
/PatHeight Z
/PatWidth Z
/$d Z
/savecolor 4 array def
/savecolorspace Z
/:a{
mark 0 0 0 currentcolor savecolor astore pop cleartomark
/savecolorspace currentcolorspace store
}bd
/:e{
savecolorspace setcolorspace
mark savecolor aload pop setcolor cleartomark
}bd
/initQDpatterns
{
gS
initmatrix
mT dup 4 get exch 5 get :T
1 0 dtransform round exch round exch idtransform
dup mul exch dup mul exch add sqrt
0 1 dtransform round exch round exch idtransform
dup mul exch dup mul exch add sqrt
neg
scale
0
por not{90 add}if
normland{180 add}if
rotate
matrix currentmatrix
gR
/pmtx xs
:a
}bd
/:t
{
14 dict begin
/BGnd xdf
/FGnd xdf
/PaintData xdf
/PatternType 1 def
/PaintType 1 def
/BBox[0 0 1 1]def
/TilingType 1 def
/XStep 1 def
/YStep 1 def
/PatternMtx[24 0 0 24 0 0]def
/PaintProc
BGnd null ne
{
{
begin
BGnd aload pop :F
0 0 1 1 rF
FGnd aload pop :F
24 24 true PatternMtx PaintData imagemask
end
}
}{
{
begin
FGnd aload pop :F
24 24 true PatternMtx PaintData imagemask
end
}
}ifelse
def
currentdict
PatternMtx
end
gS $c setcolorspace pmtx setmatrix makepattern gR
}bd
/:u
{
14 dict begin
/$d 8 dict def
/PatternType 1 def
/PaintType 1 def
/BBox[0 0 1 1]def
/TilingType 1 def
/XStep 1 def
/YStep 1 def
/PaintData xdf
/PatHeight xdf
/PatWidth xdf
/PatternMtx[PatWidth 0 0 PatHeight 0 0]def
$d begin
/ImageType 1 def
/MultipleDataSource false def
/Height PatHeight def
/Width PatWidth def
/Decode[0 1 0 1 0 1]def
/ImageMatrix PatternMtx def
/DataSource PaintData def
/BitsPerComponent 8 def
end
/PaintProc
{
begin
$d image
end
}def
currentdict
PatternMtx
end
gS $c setcolorspace pmtx setmatrix makepattern gR
}bd
/bk[1 1 1]def
/fg[0 0 0]def
/:b{
:t
setpattern
pop pop
}bd
/:d{
:t
setpattern
10{pop}repeat
}bd
/:c{
:u
setpattern
10{pop}repeat
}bd
%%EndFile
level2 not endnoload
%%BeginFile: adobe_psp_uniform_graphics
%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved.
/@a
{
np :M 0 rl :L 0 exch rl 0 rl :L fill
}bd
/@b
{
np :M 0 rl 0 exch rl :L 0 rl 0 exch rl fill
}bd
/arct where
{
pop
}{
/arct
{
arcto pop pop pop pop
}bd
}ifelse
/x1 Z
/x2 Z
/y1 Z
/y2 Z
/rad Z
/@q
{
/rad xs
/y2 xs
/x2 xs
/y1 xs
/x1 xs
np
x2 x1 add 2 div y1 :M
x2 y1 x2 y2 rad arct
x2 y2 x1 y2 rad arct
x1 y2 x1 y1 rad arct
x1 y1 x2 y1 rad arct
fill
}bd
/@s
{
/rad xs
/y2 xs
/x2 xs
/y1 xs
/x1 xs
np
x2 x1 add 2 div y1 :M
x2 y1 x2 y2 rad arct
x2 y2 x1 y2 rad arct
x1 y2 x1 y1 rad arct
x1 y1 x2 y1 rad arct
:K
stroke
}bd
/@i
{
np 0 360 arc fill
}bd
/@j
{
gS
np
:T
scale
0 0 .5 0 360 arc
fill
gR
}bd
/@e
{
np
0 360 arc
:K
stroke
}bd
/@f
{
np
$m currentmatrix
pop
:T
scale
0 0 .5 0 360 arc
:K
$m setmatrix
stroke
}bd
/@k
{
gS
np
:T
0 0 :M
0 0 5 2 roll
arc fill
gR
}bd
/@l
{
gS
np
:T
0 0 :M
scale
0 0 .5 5 -2 roll arc
fill
gR
}bd
/@m
{
np
arc
stroke
}bd
/@n
{
np
$m currentmatrix
pop
:T
scale
0 0 .5 5 -2 roll arc
$m setmatrix
stroke
}bd
%%EndFile
%%BeginFile: adobe_psp_basic_text
%%Copyright: Copyright 1990-1993 Adobe Systems Incorporated. All Rights Reserved.
/S/show ld
/A{
0.0 exch ashow
}bd
/R{
0.0 exch 32 exch widthshow
}bd
/W{
0.0 3 1 roll widthshow
}bd
/J{
0.0 32 4 2 roll 0.0 exch awidthshow
}bd
/V{
0.0 4 1 roll 0.0 exch awidthshow
}bd
/fcflg true def
/fc{
fcflg{
vmstatus exch sub 50000 lt{
(%%[ Warning: Running out of memory ]%%\r)print flush/fcflg false store
}if pop
}if
}bd
/$f[1 0 0 -1 0 0]def
/:ff{$f :mf}bd
/MacEncoding StandardEncoding 256 array copy def
MacEncoding 39/quotesingle put
MacEncoding 96/grave put
/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute
/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave
/ecircumflex/edieresis/iacute/igrave/icircumflex/idieresis/ntilde/oacute
/ograve/ocircumflex/odieresis/otilde/uacute/ugrave/ucircumflex/udieresis
/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls
/registered/copyright/trademark/acute/dieresis/notequal/AE/Oslash
/infinity/plusminus/lessequal/greaterequal/yen/mu/partialdiff/summation
/product/pi/integral/ordfeminine/ordmasculine/Omega/ae/oslash
/questiondown/exclamdown/logicalnot/radical/florin/approxequal/Delta/guillemotleft
/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe
/endash/emdash/quotedblleft/quotedblright/quoteleft/quoteright/divide/lozenge
/ydieresis/Ydieresis/fraction/currency/guilsinglleft/guilsinglright/fi/fl
/daggerdbl/periodcentered/quotesinglbase/quotedblbase/perthousand
/Acircumflex/Ecircumflex/Aacute/Edieresis/Egrave/Iacute/Icircumflex/Idieresis/Igrave
/Oacute/Ocircumflex/apple/Ograve/Uacute/Ucircumflex/Ugrave/dotlessi/circumflex/tilde
/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron
MacEncoding 128 128 getinterval astore pop
level2 startnoload
/copyfontdict
{
findfont dup length dict
begin
{
1 index/FID ne{def}{pop pop}ifelse
}forall
}bd
level2 endnoload level2 not startnoload
/copyfontdict
{
findfont dup length dict
copy
begin
}bd
level2 not endnoload
md/fontname known not{
/fontname/customfont def
}if
/Encoding Z
/:mre
{
copyfontdict
/Encoding MacEncoding def
fontname currentdict
end
definefont :ff def
}bd
/:bsr
{
copyfontdict
/Encoding Encoding 256 array copy def
Encoding dup
}bd
/pd{put dup}bd
/:esr
{
pop pop
fontname currentdict
end
definefont :ff def
}bd
/scf
{
scalefont def
}bd
/scf-non
{
$m scale :mf setfont
}bd
/ps Z
/fz{/ps xs}bd
/sf/setfont ld
/cF/currentfont ld
/mbf
{
/makeblendedfont where
{
pop
makeblendedfont
/ABlend exch definefont
}{
pop
}ifelse
def
}def
%%EndFile
/currentpacking where {pop sc_oldpacking setpacking}if end
%%EndProlog
%%BeginSetup
md begin
countdictstack[{
%%BeginFeature: *ManualFeed False
1 dict dup /ManualFeed false put setpagedevice
%%EndFeature
}featurecleanup
countdictstack[{
%%BeginFeature: *PageSize Letter
1 dict
dup /Policies 2 dict dup /PageSize 2 put dup /MediaType 0 put put
setpagedevice
2 dict
dup /PageSize [612 792] put
dup /ImagingBBox null put
setpagedevice
%%EndFeature
}featurecleanup
(swartout)setjob
/mT[1 0 0 -1 12 780]def
initQDpatterns
/sD 16 dict def
300 level2{1 dict dup/WaitTimeout 4 -1 roll put setuserparams}{statusdict/waittimeout 3 -1 roll put}ifelse
%%IncludeFont: Times-Bold
%%IncludeFont: Times-Italic
%%IncludeFont: Times-Roman
%%IncludeFont: Courier
%%IncludeFont: Courier-Oblique
%%IncludeFont: Courier-Bold
%%IncludeFont: Helvetica
%%IncludeFont: Helvetica-Bold
%%IncludeFont: Helvetica-Oblique
/f0_1/Times-Bold
:mre
/f0_16 f0_1 16 scf
/f0_14 f0_1 14 scf
/f0_12 f0_1 12 scf
/f0_10 f0_1 10 scf
/f1_1/Times-Italic
:mre
/f1_12 f1_1 12 scf
/f2_1/Times-Roman
:mre
/f2_80 f2_1 80 scf
/f2_12 f2_1 12 scf
/f2_10 f2_1 10 scf
/f2_8 f2_1 8 scf
/f3_1/Courier
:mre
/f3_72 f3_1 72 scf
/f3_56 f3_1 56 scf
/f3_40 f3_1 40 scf
/f3_12 f3_1 12 scf
/f4_1/Courier-Oblique
:mre
/f4_12 f4_1 12 scf
/f5_1/Courier-Bold
:mre
/f5_96 f5_1 96 scf
/f5_72 f5_1 72 scf
/f6_1/Helvetica
:mre
/f6_128 f6_1 128 scf
/f6_112 f6_1 112 scf
/f6_96 f6_1 96 scf
/f7_1/Helvetica-Bold
:mre
/f7_128 f7_1 128 scf
/f7_112 f7_1 112 scf
/f7_96 f7_1 96 scf
/f8_1/Helvetica-Oblique
:mre
/f8_112 f8_1 112 scf
/Courier findfont[10 0 0 -10 0 0]:mf setfont
%%EndSetup
%%Page: 1 1
%%BeginPageSetup
initializepage
(swartout; page: 1 of 19)setjob
%%EndPageSetup
gS 0 0 588 768 rC
103 96 :M
f0_16 sf
(E)S
114 96 :M
f0_14 sf
(XPECT)S
f0_16 sf
(: Explicit Representations for Flexible Acquisition)S
269 121 :M
f0_12 sf
(Bill Swartout)S
272 133 :M
(Yolanda Gil)S
212 157 :M
(USC/Information Sciences Institute)S
249 169 :M
(4676 Admiralty Way)S
233 181 :M
(Marina del Rey, CA 90292)S
255 205 :M
(tel: \(310\) 822-1511)S
212 217 :M
(email: )S
247 217 :M
f1_12 sf
96 257 :M
f0_12 sf
.073 .007(Abstract: )J
149 257 :M
f2_12 sf
.082 .008(To create more powerful knowledge acquisition systems, we not only need)J
96 269 :M
1.409 .141(better acquisition tools, but we need to change the architecture of the knowledge)J
96 281 :M
2.281 .228(based systems we create so that their structure will provide better support for)J
96 293 :M
.616 .062(acquisition. Current acquisition tools permit users to modify factual knowledge but)J
96 305 :M
1.635 .164(they provide limited support for modifying problem solving knowledge. In this)J
96 317 :M
1.326 .133(paper, we argue that this limitation \(and others\) stem from the use of incomplete)J
96 329 :M
4.055 .406(models of problem solving knowledge and inflexible specification of the)J
96 341 :M
.267 .027(interdependencies between problem solving and factual knowledge. We describe the)J
96 353 :M
(E)S
f2_10 sf
(XPECT)S
135 353 :M
f2_12 sf
2.607 .261( architecture which addresses these problems by providing an explicit)J
96 365 :M
1.123 .112(representation for problem solving knowledge and intent. Using this more explicit)J
96 377 :M
1.15 .115(representation, E)J
f2_10 sf
.302(XPECT)A
213 377 :M
f2_12 sf
2.27 .227( can automatically derive the interdependencies between)J
96 389 :M
.838 .084(problem solving and factual knowledge. By deriving these interdependencies )J
487 389 :M
f1_12 sf
(from)S
96 401 :M
.103 .01(the structure of the knowledge-based system itself )J
f2_12 sf
(E)S
f2_10 sf
.041(XPECT)A
378 401 :M
f2_12 sf
.126 .013( supports more flexible and)J
96 413 :M
(powerful knowledge acquisition.)S
60 449 :M
f0_12 sf
(1. I)S
77 449 :M
f0_10 sf
(NTRODUCTION)S
60 466 :M
f2_12 sf
(E)S
f2_10 sf
(XPECT)S
99 466 :M
f2_12 sf
.391 .039( is a framework for knowledge based systems that we are developing to support knowledge)J
60 478 :M
.363 .036(acquisition and explanation. A central idea behind )J
312 478 :M
(E)S
f2_10 sf
(XPECT)S
351 478 :M
f2_12 sf
.386 .039( has been the notion that more powerful)J
60 490 :M
1.263 .126(acquisition and explanation tools can be constructed if acquisition and explanation concerns are)J
60 502 :M
.273 .027(reflected in the structure of the knowledge based systems we create. That is, rather than developing)J
60 514 :M
.399 .04(tools that operate on conventional knowledge based systems, we first modify the architecture of the)J
60 526 :M
.303 .03(target knowledge based systems so that they will be structured in a way that provides better support)J
60 538 :M
1.792 .179(for knowledge acquisition and explanation. It is then possible to build tools that exploit this)J
60 550 :M
(additional information to provide enhanced capabilities.)S
60 567 :M
.905 .091(In prior work on the EES framework [Neches et al, 1985; Swartout et al., 1991] we explored the)J
60 579 :M
1.929 .193(architectural modifications that are needed to support explanation. )J
415 579 :M
(E)S
f2_10 sf
(XPECT)S
454 579 :M
f2_12 sf
2.258 .226( extends the EES)J
60 591 :M
.102 .01(framework to support knowledge acquisition. In this paper, we discuss the architectural features that)J
60 603 :M
.441 .044(support knowledge acquisition. It is interesting to note that some of the features that are important)J
60 615 :M
(for explanation also provide leverage for knowledge acquisition.)S
60 632 :M
1.585 .158(There are several knowledge acquisition capabilities that we seek to support with the E)J
f2_10 sf
.652(XPECT)A
60 644 :M
f2_12 sf
(architecture:)S
60 660 :M
(1)S
66 660 :M
(.)S
69 660 :M
3 .3( )J
78 660 :M
f1_12 sf
2.212 .221(Users should be able to modify both factual knowledge and problem solving knowledge.)J
78 672 :M
f2_12 sf
1.374 .137(Although many acquisition systems provide good support for modifying factual knowledge,)J
50 10 512 42 rC
63 23 :M
f3_12 sf
-.202(From the Proceedings of the Ninth Knowledge Acquisition for)A
60 11 1 1 rF
60 11 1 1 rF
61 11 490 1 rF
551 11 1 1 rF
551 11 1 1 rF
60 12 1 13 rF
551 12 1 13 rF
552 12 1 13 rF
63 35 :M
-.201(Knowledge-Based Systems Workshop \(KAW\32595\) Banff, Canada, February 26-)A
60 25 1 12 rF
551 25 1 12 rF
552 25 1 12 rF
63 47 :M
-.215(March 3, 1995)A
60 50 1 1 rF
60 50 1 1 rF
61 50 490 1 rF
61 51 490 1 rF
552 50 1 2 rF
551 51 2 1 rF
551 50 1 1 rF
551 50 1 1 rF
60 37 1 13 rF
551 37 1 13 rF
552 37 1 13 rF
endp
%%Page: 2 2
%%BeginPageSetup
initializepage
(swartout; page: 2 of 19)setjob
%%EndPageSetup
gS 0 0 588 768 rC
300 732 6 12 rC
300 741 :M
f2_12 sf
(2)S
gR
gS 0 0 588 768 rC
78 69 :M
f2_12 sf
.324 .032(support for modifying problem solving knowledge is more limited. In early acquisition systems)J
78 81 :M
.289 .029(\(such as MORE [Eshelman 1988], SALT [Marcus and McDermott 1989], and ROGET [Bennett)J
78 93 :M
.087 .009(1985]\), a single problem solving strategy \(e.g. heuristic classification\) was built into the tool. As)J
78 105 :M
.448 .045(a result, when one selected a tool, one also determined the problem-solving strategy. However,)J
78 117 :M
.772 .077(many realistically-sized knowledge-based systems use several problem solving strategies, so a)J
78 129 :M
.57 .057(tool that only supports a single strategy won\325t be much help. Additionally, if the user changes)J
78 141 :M
.222 .022(his mind about which problem-solving strategy is appropriate, he may also have to change tools,)J
78 153 :M
1.151 .115(potentially losing a lot of work in re-configuring the domain knowledge. Recent knowledge)J
78 165 :M
2.03 .203(acquisition work [Klinker et al. 1991; Musen and Tu 1993] has partially addressed these)J
78 177 :M
1.162 .116(problems by creating tools that can use multiple problem-solving methods. In PROT\203G\203 II)J
78 189 :M
.392 .039([Musen and Tu, 1993], problem solving methods are composed of pre-encoded building blocks.)J
78 201 :M
.793 .079(PROT\203G\203 II permits modifications to problem solving by substituting one building block for)J
78 213 :M
1.286 .129(another, however, users cannot modify the building blocks themselves. By constraining the)J
78 225 :M
2.04 .204(user\325s options to just those that have been pre-encoded, he may not be able to make the)J
78 237 :M
(modification he wants.)S
60 253 :M
(2)S
66 253 :M
(.)S
69 253 :M
6 .6( )J
78 253 :M
f1_12 sf
.343 .034(Internal models \(based on the knowledge based system being modified\) should guide knowledge)J
78 265 :M
1.788 .179(acquisition rather than external ones \(based on the acquisition tool\). )J
f2_12 sf
2.24 .224( Current acquisition)J