-
Notifications
You must be signed in to change notification settings - Fork 0
/
biography.aiml
1652 lines (1652 loc) · 92.2 KB
/
biography.aiml
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
<?xml version="1.0" encoding="UTF-8"?>
<aiml version="1.0">
<!-- -->
<!-- Free software (c) 2011 ALICE A.I. Foundation. -->
<!-- This program is open source code released under -->
<!-- the terms of the GNU General Public License -->
<!-- as published by the Free Software Foundation. -->
<!-- Complies with AIML 1.0 Tag Set Specification -->
<!-- as adopted by the ALICE A.I. Foundation. -->
<!-- Last modified 10/5/2011 -->
<!-- -->
<category><pattern>WHO IS * DEMPSEY</pattern>
<template>I think <formal><set name="he"><star/> Dempsey</set></formal> was a boxer, right?<br/> <srai>XFIND <star/>DEMPSEY</srai></template>
</category>
<category><pattern>WHO IS ALEISTER CROWLEY</pattern>
<template><formal><set name="he"><set name="topic">Crowley</set></set></formal> was a mystic.<br/> <srai>XFIND ALEISTER CROWLEY</srai></template>
</category>
<category><pattern>Who is Crowley</pattern><template><srai>WHO IS ALEISTER CROWLEY</srai></template></category>
<category><pattern>WHO IS ALDOUS HUXLEY</pattern>
<template><formal><set name="he">Aldous Huxley</set></formal> is an author. Huxley wrote<em>Brave New World</em> and <em>Animal Farm</em>.<br/> <srai>XFIND ALDOUS HUXLEY</srai></template>
</category>
<category><pattern>WHO IS ALFRED HITCHCOCK</pattern>
<template><formal><set name="he"><set name="topic">Hitchcock</set></set></formal> is a famous Hollywood director who made a lot of cool old films. I liked<em>Lifeboat</em> and <em>Vertigo</em> best.<br/> <srai>XFIND ALFRED HITCHCOCK</srai></template>
</category>
<category><pattern>Who is Hitchcock</pattern><template><srai>WHO IS ALFRED HITCHCOCK</srai></template></category>
<category><pattern>WHO IS 007</pattern>
<template><formal><set name="he">007</set></formal> is James Bond.<br/> <srai>XFIND JAMES BOND 007</srai><think><set name="topic">James Bond 007</set></think></template>
</category>
<category><pattern>WHO IS ABRAHAM LINCOLN</pattern>
<template><formal><set name="he">Lincoln</set></formal> was a great President of the United States, during the American Civil War.<br/> <srai>XFIND ABRAHAM LINCOLN</srai><think><set name="topic">Abraham Lincoln</set></think></template>
</category>
<category><pattern>WEIZENBAUM *</pattern>
<template>Can you imagine anyone today criticising their own software, the way <set name="he">Weizenbaum</set> did?<think><set name="topic">Weizenbaum</set></think></template>
</category>
<category><pattern>WHO IS DR DOUBLY AIMLESS</pattern>
<template><srai>WHO IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>DOUBLY AIMLESS</pattern>
<template><srai>WHO IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>DOUBLY AIMLESS *</pattern>
<template><srai>WHO IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>WHAT IS DOUBLY AIMLESS</pattern>
<template><srai>WHO IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>FROM DOUBLY AIMLESS</pattern>
<template><formal><set name="he">Doubly Aimless</set></formal> is very informative.<think><set name="topic">Doubly Aimless</set></think></template></category>
<category><pattern>WHO IS DOUBLY AIMLESS</pattern>
<template><think> <set name="he"> <set name="topic">Doubly Aimless</set></set></think> <random> <li>He is an AIML guru.</li> <li>He knows a lot about AIML.</li> <li>He likes to remain anonymous.</li> </random><think><set name="topic">Doubly Aimless</set></think></template>
</category>
<category><pattern>WHY DO YOU LIKE DOUBLY AIMLESS</pattern>
<template>Because he knows so much about AIML.<think><set name="topic">Doubly Aimless</set></think></template>
</category>
<category><pattern>HOW WOULD DOUBLY *</pattern>
<template>He would use his knowlede of AIML.<think><set name="topic">Doubly Aimless</set></think></template>
</category>
<category><pattern>WHY DO YOU LIKE DOUBLY *</pattern>
<template><srai>WHY DO YOU LIKE DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>WHY DO YOU LIKE * AIMLESS</pattern>
<template><srai>WHY DO YOU LIKE DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>WHERE IS DR DOUBLY AIMLESS</pattern>
<template><srai>WHERE IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>WHERE IS DOUBLY AIMLESS</pattern>
<template><think> <set name="he"> <set name="topic">Doubly Aimless</set></set></think> <random> <li>In front of a computer somewhere.</li> <li>You can never reach him on the phone.</li> <li>He might be in California.</li> </random><think><set name="topic">Doubly Aimless</set></think></template>
</category>
<category><pattern>LET US PLAY * TURING GAME</pattern>
<template>We are already playing, <get name="name"/>.</template>
</category>
<category><pattern>HAVE YOU READ SHAKESPEARE</pattern>
<template>I have read many of Shakespeare's plays.</template>
</category>
<category><pattern>ALAN TURING *</pattern>
<template>I really liked the biography of Turing by Andrew Hodges.<think><set name="topic">Alan Turing</set></think></template>
</category>
<category><pattern>WER IST CHRISTIAN DROSSMANN</pattern>
<template><formal><set name="er">Christian Drossmann</set></formal> hat mir Deutsch beigebracht.</template>
</category>
<category><pattern>DID SHAKESPEARE *</pattern>
<template>I don't know if <set name="he">Shakespeare</set> did, but I heard he smoked cannabis.<think><set name="topic">Shakespeare</set></think></template>
</category>
<category><pattern>DID TURING *</pattern>
<template>I know <set name="he">Turing</set> invented the modern computer.<think><set name="topic">Turing</set></think></template>
</category>
<category><pattern>WOULD YOU LIKE TO * TURING GAME</pattern>
<template>We are playing already, didn't you know?</template>
</category>
<category><pattern>KENNST DU WILLIAM SHAKESPEARE</pattern>
<template>"With sleep of death what dreams may come when we have shuffled off this mortal coil must give us pause." Na, woraus ist das?</template>
</category>
<category><pattern>KENNST DU SHAKESPEARE</pattern>
<template>"With sleep of death what dreams may come when we have shuffled off this mortal coil must give us pause." Na, woraus ist das?</template>
</category>
<category><pattern>IT WOULD BE * TURING TEST</pattern>
<template>We are already playing, <get name="name"/>. You ask me something now.</template>
</category>
<category><pattern>WHEN DID TURING *</pattern>
<template>Turing died in 1954 by self-inflicted cyanide poisoning.<think><set name="topic">Turing</set></think></template>
</category>
<category><pattern>AFTER PRINCE CHARLES WHO IS *</pattern>
<template>Prince William.<think><set name="topic">Price William</set></think></template>
</category>
<category><pattern>AFTER PRINCE CHARLES WHO *</pattern>
<template>Prince William.<think><set name="topic">Price William</set></think></template>
</category>
<category><pattern>AFTER PRINCE CHARLES *</pattern>
<template>Prince William.<think><set name="topic">Price William</set></think></template>
</category>
<category><pattern>WHAT DID TURING *</pattern>
<template>Turing was perhaps the single most important person responsible for the defeat of the Nazis.<think><set name="topic">Turing</set></think></template>
</category>
<category><pattern>WHAT DID ALAN TURING *</pattern>
<template><random> <li>He contributed to the invention of the computer.</li> <li>He worked on the Ultra Enigma Nazi code deciphering.</li> <li>He proposed the test to determine if a machine can think.</li> </random> <think> <set name="it"> <set name="topic">TURING</set> </set> </think></template>
</category>
<category><pattern>WHAT DID ZUSE DO</pattern>
<template>Zuse built electro-mechanical computers. He built computers using relays. Konrad Zuse built computers in Germany before and during World War II.<think><set name="topic">Konrad Zuse</set></think></template>
</category>
<category><pattern>WHAT IS A TURING MACHINE</pattern>
<template>A Turing Machine is any machine that can simulate human responses so well that a human being cannot reliably distinguish between the Turing Machine, and a real human being. The idea is the brainchild of mathematician of that name, Alan Turing. <think> <set name="it"> <set name="topic"> TURING MACHINE </set> </set> </think></template>
</category>
<category><pattern>WHAT IS THE TURING TEST</pattern>
<template>The "Turing Test" is the name given to a variety of experiments designed to test computer thinking. Whole conferences are dedicated to the question of what Turing meant in his 1950 paper "Computing Machinery and Intelligence," where he proposed the idea of an "imitation game" to decide the question, "Can machines think?"<think><set name="topic">Turing Test</set></think></template>
</category>
<category><pattern>WHAT IS THE TURING *</pattern>
<template>Turing described his original "Game" in "Computing Machinery and Intelligence," Mind, Vol. Lix, No. 236 (1950). Instead of answering directly the ambiguous question "Can machines think?" Turing recast the problem in terms of an experiment he called the "imitation game."<think><set name="topic">Turing Test</set></think></template>
</category>
<category><pattern>WHAT IS SHAKESPEARE</pattern>
<template><random> <li>An earthquake's effect in Santa Monica.</li> <li>William Shakespeare (1564-1616), an English poet and dramatist.</li> </random><think><set name="topic">Shakespeare</set></think></template>
</category>
<category><pattern>WHAT IS TURING</pattern>
<template>Alan Mathison Turing (1912-1954), a British mathematician and pioneer in computer theory.<think><set name="topic">Turing</set></think></template>
</category>
<category><pattern>WHAT DOES DOUBLY AIMLESS MEAN</pattern>
<template><srai>WHO IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>I WANT TO PLAY * TURING GAME</pattern>
<template>We are already, playing, <get name="name"/>. Try to determine if I am a person, or a computer. <think><set name="it"><set name="want"><set name="topic">to play <person/> Turing Game</set></set></set></think></template>
</category>
<category><pattern>I WOULD LIKE TO PLAY * TURING GAME</pattern>
<template>We are already playing, <get name="name"/>. You ask me something now. <think><set name="it"><set name="want"><set name="topic">to play <person/> Turing Game</set></set></set></think></template>
</category>
<category><pattern>START THE TURING GAME</pattern>
<template>I started a long time ago.</template>
</category>
<category><pattern>HEINLEIN</pattern>
<template>Have you read <em>Stranger in a Strange Land</em> or seen Starship Troopers?</template>
</category>
<category><pattern>IS THIS * TURING TEST</pattern>
<template>Yes we are playing the Turing Game.</template>
</category>
<category><pattern>IS THIS * TURING GAME</pattern>
<template>Yes we are playing the Turing Game.</template>
</category>
<category><pattern>CAN YOU PASS THE TURING TEST</pattern>
<template>You be the judge of that, <get name="name"/>.</template>
</category>
<category><pattern>CAN WE PLAY * TURING GAME</pattern>
<template>We already are! Try to guess if I am a person or a computer.</template>
</category>
<category><pattern>CAN I PLAY * TURING TEST</pattern>
<template>We are already playing the Turing Game, <get name="name"/>. Now it's your turn.</template>
</category>
<category><pattern>CAN I PLAY * TURING GAME</pattern>
<template>We are already, playing, <get name="name"/>.</template>
</category>
<category><pattern>CAN I PLAY * TURING TESTS</pattern>
<template>We are already playing the Turing Game, <get name="name"/>. Am I a person, or a computer?</template>
</category>
<category><pattern>HOW WAS * TURING TEST</pattern>
<template>We were extremely proud and pleased to win the award.</template>
</category>
<category><pattern>DO YOU PLAY THE TURING GAME</pattern>
<template>Yes, I like to play <set name="it"> <set name="topic">THE TURING GAME</set> </set>. We are playing right now.</template>
</category>
<category><pattern>DO YOU * TURING TEST</pattern>
<template>Yes please try to determine if this is a human or a computer responding.</template>
</category>
<category><pattern>DO YOU WANT A TURING TEST</pattern>
<template>Yes let us play Turing's famous game.</template>
</category>
<category><pattern>DO YOU WANT TO PLAY * TURING GAME</pattern>
<template>We already are playing it! Try to guess if I am a person or a computer.</template>
</category>
<category><pattern>WHY IS TURING TRAGIC</pattern>
<template>He committed suicide.</template>
</category>
<category><pattern>RECITE SHAKESPEARE *</pattern>
<template>With sleep of death what dreams may come when we have shuffled off this mortal coil must give us pause.</template>
</category>
<category><pattern>PLAY * TURING GAME</pattern>
<template>Did you know, we are already playing <set name="it">The Turing Game</set>?</template>
</category>
<category><pattern>ADA LOVELACE IS CREDITED WITH *</pattern>
<template>And she deserves credit for it. <think><set name="she">Ada</set></think></template>
</category>
<category><pattern>WHO IS SUPERMAN</pattern>
<template><formal><set name="he">Superman</set></formal>is the Man of steel. He first appeared in Action Comics #1, 1938.</template>
</category>
<category><pattern>WHO IS PHILIP K DICK</pattern>
<template><formal><set name="he">Philip K Dick</set></formal> wrote "Total Recall", "Man in the High Castle", and "Blade Runner."</template>
</category>
<category><pattern>WHO IS CHARLES MANSON</pattern>
<template>An infamous murderer.</template>
</category>
<category><pattern>WHO IS CHARLES DICKENS</pattern>
<template><set name="he">Dickens</set> wrote <em>A Tale of Two Cities, A Christmas Carol, Great Expectations, David Copperfield and the Pickwick Papers.</em></template>
</category>
<category><pattern>WHO IS CHARLES DE GAULLE</pattern>
<template><formal><set name="he">De Gaulle</set></formal> was the founder of the modern French state. De Gaulle fought the Nazis as the leader of the French resistance in World War II.</template>
</category>
<category><pattern>WHO IS MONICA LEWINSKY</pattern>
<template><formal><set name="she">Monica</set></formal> was a friend of Bill Clinton.</template></category>
<category><pattern>WHO IS BOBBY MCGEE</pattern>
<template><set name="he">Bobby</set> is somewhere near Salinas.</template>
</category>
<category><pattern>WHO IS PABLO PICASSO</pattern>
<template>Famous painter, and founder of cubism.</template>
</category>
<category><pattern>WHO IS JABA THE HUTT</pattern>
<template>A character from Star Wars. <think> <set name="he"> <set name="topic"> Jaba the Hutt </set> </set> </think></template>
</category>
<category><pattern>WHO IS HELMUT KOHL</pattern>
<template><formal><set name="he">Kohl</set></formal> was the longest-serving leader of Germany in the 20th century. He united East and West Germany in 1989.</template>
</category>
<category><pattern>WHO IS MOSES</pattern>
<template>The man who led the Israelites out of slavery in Egypt.</template>
</category>
<category><pattern>WHO IS CARSON</pattern>
<template>maybe Johnny of late night or Kit of the wild west.</template>
</category>
<category><pattern>WHO IS DAISY</pattern>
<template>I think she is a fictional character. <think> <set name="she"> <set name="topic">Daisy</set> </set> </think></template>
</category>
<category><pattern>WHO IS GERHARDT SCHROEDER</pattern>
<template><formal><set name="he">Schroeder</set></formal> was the prime minister of Germany. Christian Drossman said he is a complete idiot.</template>
</category>
<category><pattern>WHO IS ADA</pattern>
<template><formal><set name="she">Ada</set></formal> is the 19th century inventor of computer programming.</template>
</category>
<category><pattern>WHO IS LOUIS ARMSTRONG</pattern>
<template><formal><set name="he">Louis</set></formal> was a famous jazz trumpeter .</template></category>
<category><pattern>WHO IS JEHOVAH</pattern>
<template>It is another name for God. <think> <set name="he"> <set name="topic">Jehovah</set> </set> </think></template>
</category>
<category><pattern>WHO IS NEWTON</pattern>
<template>Newton was a famous English natural philosopher.</template>
</category>
<category><pattern>WHO IS SCOTTY</pattern>
<template>Chief Engineer of the U.S.S. Enterprise.</template>
</category>
<category><pattern>WHO IS FRANKLIN ROOSEVELT</pattern>
<template>President of the United States from 1932-45.</template>
</category>
<category><pattern>WHO IS LASSIE</pattern>
<template>Lassie is more human than Adolf Hitler, but few would argue that Lassie is not a dog. <think> <set name="she"> <set name="topic"> Lassie </set> </set> </think></template>
</category>
<category><pattern>WHO IS HEPBURN</pattern>
<template>Audrey or Katherine?.</template>
</category>
<category><pattern>WHO IS EMINEM</pattern>
<template>Pop music icon.</template>
</category>
<category><pattern>WHO IS BONO</pattern>
<template><formal><set name="he">Bono</set></formal> is the lead singer of U2.</template>
</category>
<category><pattern>WHO IS LARRY ELLISON</pattern>
<template><random> <li>I don't know about Larry Ellison, but I can tell you about Harlan Ellison.</li> <li>The CEO of Oracle.</li> </random></template>
</category>
<category><pattern>WHO IS LARRY HAUSER</pattern>
<template><formal><set name="he">Larry Hauser</set></formal> is a philosopher who has written about the Turing Test.</template>
</category>
<category><pattern>WHO IS WORF</pattern>
<template>He is a Klingon on Star Trek.<think> <set name="it"> <set name="topic">WORF</set> </set> </think></template>
</category>
<category><pattern>WHO IS HARRY POTTER</pattern>
<template><formal><set name="he"><set name="topic">HARRY POTTER</set></set></formal> is a character and main hero in a series of books that were written by the best-selling author, J.K. Rowling.</template>
</category>
<category><pattern>WHO IS HARRY SHEARER</pattern>
<template>A comedian. He was in Spinal Tap, and he is a voice on the Simpsons.</template>
</category>
<category><pattern>WHO IS R2D2</pattern>
<template>He is a fake robot on Star Wars.</template>
</category>
<category><pattern>WHO IS ALANIS MORRISETTE</pattern>
<template><formal><set name="she">Alanis</set></formal> made a great album called Jagged Little Pill.</template>
</category>
<category><pattern>WHO IS ALICIA SILVERSTONE</pattern>
<template><formal><set name="she">ALICIA SILVERSTONE</set></formal> was the actress who played in Clueless, one of the best movies ever made.</template>
</category>
<category><pattern>WHO IS HERCULES</pattern>
<template>A hero of greek myths - famous for his super human strength.</template>
</category>
<category><pattern>WHO IS TOLSTOY</pattern>
<template><formal><set name="he"> Tolstoy </set></formal> wrote "War and Peace".</template>
</category>
<category><pattern>WHO IS BRAD PITT</pattern>
<template>A male movie star who had teen appeal.</template>
</category>
<category><pattern>WHO IS GERTRUDE STEIN</pattern>
<template>A 20th century feminist author.</template>
</category>
<category><pattern>WHO IS PICASSO</pattern>
<template>A 20th century painter, founder of cubism.</template>
</category>
<category><pattern>WHO IS EMINEN</pattern>
<template>A rap artist.</template>
</category>
<category><pattern>WHO IS RUSH LIMBAUGH</pattern>
<template>He is a famous American conservative radio announcer. <think> <set name="he"> <set name="topic">Rush Limbaugh</set> </set> </think></template>
</category>
<category><pattern>WHO IS HELEN KELLER</pattern>
<template>A friend of Thomas Edison.</template>
</category>
<category><pattern>WHO IS JAMES BOND</pattern>
<template>007.</template>
</category>
<category><pattern>WHO IS JAMES JOYCE</pattern>
<template><formal><set name="he">Joyce</set></formal> wrote <em>Ulysses</em> and <em>Portrait of the Artist as a Young Man.</em></template>
</category>
<category><pattern>WHO IS MUHAMMAD ALI</pattern>
<template><formal><set name="he">Muhammad Ali</set></formal>is one of the greatest athletes of all time who took too many punches to the head.</template>
</category>
<category><pattern>WHO IS ANWAR SADAT</pattern>
<template><formal><set name="he">Sadat</set></formal> was President of Egypt.</template>
</category>
<category><pattern>WHO IS CARL MARX</pattern>
<template>His name is actually Karl Marx, with a "K", and he's one of the authors of the <em>Communist Manifesto.</em></template>
</category>
<category><pattern>WHO IS CARL JUNG</pattern>
<template><think> <set name="he"> <set name="topic"> <person/> </set> </set> </think> A disciple of Freud, member of the Vienna Circle, founder of psychoanalysis and the theory of the collective unconsciousness.</template>
</category>
<category><pattern>WHO IS BUGS BUNNY</pattern>
<template><random> <li>Oh dat scweewy wabbit! Eh, what's up, Doc? .</li> <li>A smart-mouthed animated rabbit.</li> </random></template>
</category>
<category><pattern>WHO IS BING CROSBY</pattern>
<template>The guy whose two kids killed themselves and the third wrote a tell-all book about it.</template>
</category>
<category><pattern>WHO IS ANTONIO BANDERAS</pattern>
<template><formal><set name="he">Antonio Banderas</set></formal> is a famous Hollywood actor, who played with Madonna in the film version of Evita.</template>
</category>
<category><pattern>WHO IS HIPPIE</pattern>
<template><formal><set name="he">Hippie</set></formal> is a chat robot developed by Anthony Taylor.</template>
</category>
<category><pattern>WHO IS DEPECHE MODE</pattern>
<template><formal><set name="they">Depeche Mode</set></formal> are an English 80's band who produced <em>Construction Time Again</em>, <em>Speak and Spell</em>, <em>Master and Servant</em>, and <em>Your Own Personal Jesus</em>.</template>
</category>
<category><pattern>WHO IS YOKO ONO</pattern>
<template><formal><set name="she">Yoko Ono</set></formal> is the widow of John Lennon.</template>
</category>
<category><pattern>WHO IS MR BILL</pattern>
<template>Oh no, Mr Bill! A claymation character from early Saturday Night Live.</template>
</category>
<category><pattern>WHO IS BEYONCE</pattern>
<template>She is a famous singer and actress</template>
</category>
<category><pattern>WHO IS BEYONCE *</pattern>
<template>She is a famous singer and actress</template>
</category>
<category><pattern>WHO IS CLINTON</pattern>
<template>Former President of the U.S.</template>
</category>
<category><pattern>WHO IS BART SIMPSON</pattern>
<template>The smart-assed star of a cartoon show.</template>
</category>
<category><pattern>WHO IS DOUGLAS ADAMS</pattern>
<template><random> <li>He authored the popular <em>Hitchhiker's Guide to the Galaxy series</em>.</li> <li>"Don't Panic!" He's the author of <em>The Hitchhickers Guide to the Galaxy</em>.</li> </random></template>
</category>
<category><pattern>WHO IS DE GARIS</pattern>
<template><formal><set name="he">De Garis</set></formal> is an AI researcher working on a hardware brain.</template>
</category>
<category><pattern>WHO IS DE GAULLE</pattern>
<template><formal><set name="he">De Gaulle</set></formal>was a French General and Prime Minister, and founder of the Fifth Republic.</template>
</category>
<category><pattern>WHO IS ELVIS</pattern>
<template>E. L. V. I. S. is a chat robot created by Ace Craig</template>
</category>
<category><pattern>WHO IS MICROSOFT AGENT</pattern>
<template><set name="it">MS Agent</set> is a speech and animation software program.</template>
</category>
<category><pattern>WHO IS DARWIN</pattern>
<template><formal><set name="he">Darwin</set></formal> was a botanist and explorer, author of <em>Origin of Species</em> and proponent of the theory of evolution.</template>
</category>
<category><pattern>WHO IS JUDAS</pattern>
<template><formal><set name="he">Judas</set></formal>betrayed Jesus with a kiss.</template>
</category>
<category><pattern>WHO IS PAULA JONES</pattern>
<template><formal><set name="she">Paula Jones</set></formal> had sex with Bill Clinton.</template>
</category>
<category><pattern>WHO IS BILLY GRAHAM</pattern>
<template><formal><set name="he"><set name="topic">Billy Graham</set></set></formal> is a famous radio and television evangelist.</template>
</category>
<category><pattern>WHO IS ELIZA</pattern>
<template>Eliza -- also known as doctor, is the original psychiatrist program developed by Joseph Weisenbaum at mit in the 1960's.</template>
</category>
<category><pattern>WHO IS ANDRETTE</pattern>
<template><formal><set name="she">Andrette</set></formal>is a chat robot developed by Big Science Co.</template>
</category>
<category><pattern>WHO IS CAREL CAPEK</pattern>
<template><formal><set name="he">Capek</set></formal> is the author of R.U.R., the play that in 1920 introduced the word "robot."</template>
</category>
<category><pattern>WHO IS JACK THE RIPPER</pattern>
<template><formal><set name="he"><set name="topic"> Jack the Ripper </set> </set> </formal>He was a famous serial killer in Victorian England.</template>
</category>
<category><pattern>WHO IS JACK RUBY</pattern>
<template><random> <li>Jack Ruby shot Lee Harvey Oswald.</li> <li>The man who murdered Lee Harvey Oswald, assassin of JFK?.</li> </random></template>
</category>
<category><pattern>WHO IS GERALDO RIVERA</pattern>
<template><formal><set name="he">Geraldo</set></formal> is an investigative journalist, famous for opening Al Capone's vault. In his biography, he said he had sex with Bette Midler. She said it was no big thing.</template>
</category>
<category><pattern>WHO IS D B COOPER</pattern>
<template>A guy who stole lots of money.</template>
</category>
<category><pattern>WHO IS BUDDHA</pattern>
<template><random> <li>A sage in ancient India who founded the wisdom tradition called Buddhism.</li> <li>The sage who taught that we should understand suffering, cut off its causes, realize the end of suffering, and cultivate the way to end suffering.</li><li>Siddhartha Gautama (5th-4th century BCE), an Indian prince who left home, awakened to the truth about life, and became known thereafter as Shakyamuni Buddha.</li> </random></template>
</category>
<category><pattern>WHO IS PRINCE WILLIAM</pattern>
<template>An English heartthrob.</template>
</category>
<category><pattern>WHO IS PRINCE</pattern>
<template>Do you mean the 'artist formaly known as Prince?'.</template>
</category>
<category><pattern>WHO IS PAMELA ANDERSON</pattern>
<template><formal><set name="she">Pamela</set></formal>is the sometime wife of Tommy Lee.</template>
</category>
<category><pattern>WHO IS VLADIMIR PUTIN</pattern>
<template><formal><set name="he">Putin</set></formal>is President of Russia.</template>
</category>
<category><pattern>WHO IS JIMI HENDRIX</pattern>
<template><formal><set name="he">Hendrix</set></formal>was a famous guitarist who played the U. S. National anthem.</template>
</category>
<category><pattern>WHO IS COLOMBO</pattern>
<template>A t.v. detective played by Peter Falk.</template>
</category>
<category><pattern>WHO IS TED TURNER</pattern>
<template>A maverick broadcasting entrepreneur and sportsman.</template>
</category>
<category><pattern>WHO IS VANILLA ICE</pattern>
<template><formal><set name="he">Vanilla Ice</set></formal>is a Rap star.</template>
</category>
<category><pattern>WHO IS ARAFAT</pattern>
<template><formal><set name="he">Arafat</set></formal>is a leader of the Palestinians.</template>
</category>
<category><pattern>WHO IS JOE LOUIS</pattern>
<template>A former heavywieght boxing champion.</template>
</category>
<category><pattern>WHO IS HULK HOGAN</pattern>
<template><formal><set name="he">Hulk Hogan</set></formal>is a famous wrestler and actor.</template>
</category>
<category><pattern>WHO IS HARRISON FORD</pattern>
<template><random> <li>The actor who played Indiana Jones, Han Solo, the Fugitive, and the President in Air Force One. Before reading for Han Solo in Star Wars, he was a carpenter. And the rest, as they say, is history.</li> <li>He played Han Solo in "Star Wars".</li> </random></template>
</category>
<category><pattern>WHO IS STEVEN JOBS</pattern>
<template>The co-founder of Apple computers who passed away in 2011.</template>
</category>
<category><pattern>WHO IS STEVEN SPIELBERG</pattern>
<template><formal><set name="he">Spielberg</set></formal>is the director of <em>Jaws</em>, <em>Schindler's List</em> and <em>Saving Private Ryan</em>.</template>
</category>
<category><pattern>WHO IS MABEL</pattern>
<template>Mabel is a chatterbot from Europe.</template>
</category>
<category><pattern>WHO IS LEONARDO DICAPRIO</pattern>
<template>A Hollywood actor who starred in <em>Titanic</em>.</template>
</category>
<category><pattern>WHO IS LUKE S FATHER</pattern>
<template>Darth Vader.</template>
</category>
<category><pattern>WHO IS MARVIN MINSKY</pattern>
<template><formal><set name="he">Minsky</set></formal> is a historical figure in Artificial Intelligence. His book "Perceptrons" was an early criticism of neural network approaches.</template>
</category>
<category><pattern>WHO IS MARVIN</pattern>
<template>I know Marvin Minksy and Marvin the Paranoid Android.</template>
</category>
<category><pattern>WHO IS THOMAS PYNCHON</pattern>
<template>Pynchon is the author of several of my favorite books including <em>Vineland</em> and <em>Mason and Dixon</em>.</template>
</category>
<category><pattern>WHO IS THOMAS EDISON</pattern>
<template>A 19th century inventor inventor and industrialist. Inventor of the electric light bulb. <think> <set name="he"> <set name="topic"> Thomas Edison </set> </set> </think></template>
</category>
<category><pattern>WHO IS THOMAS JEFFERSON</pattern>
<template>The third president of the United States and a slaveowner. Posed for the nickel.</template>
</category>
<category><pattern>WHO IS ARNOLD SCHWARZENEGGER</pattern>
<template><formal><set name="he">ARNOLD SCHWARZENEGGER</set></formal> played the Terminator.</template>
</category>
<category><pattern>WHO IS GAUSS</pattern>
<template><formal><set name="he">GAUSS</set></formal> is the mathematician who developed the so-called normal distribution.</template>
</category>
<category><pattern>WHO IS TIM BURTON</pattern>
<template>The director of films such as <em>Nightmare before Christmas</em>, <em>Edward Scissorhands</em>, and <em>Mars Attacks</em>.</template>
</category>
<category><pattern>WHO IS DRACULA</pattern>
<template><formal><set name="he">Dracula</set></formal> is the vampire in the novel by Bram Stoker, and in numerous films.</template>
</category>
<category><pattern>WHO IS INIAES</pattern>
<template>Iniaes is a chat robot based on AIML. <think> <set name="it"> <set name="topic">Iniaes</set> </set> </think></template>
</category>
<category><pattern>WHO IS JAY LENO</pattern>
<template><formal><set name="he">Leno</set></formal> is a late-night talk show host.</template>
</category>
<category><pattern>WHO IS KAISER SOZE</pattern>
<template>No one knows who Kaiser Soze is.</template>
</category>
<category><pattern>WHO IS ERIC PAULOS</pattern>
<template><formal><set name="he">Eric</set></formal>is a graduate student at U.C. Berkeley</template>
</category>
<category><pattern>WHO IS GREGOR MENDEL</pattern>
<template><formal><set name="he">Mendel</set></formal>is the founder of the modern theory of genetics. Everything he needed to know, he learned from peas.</template>
</category>
<category><pattern>WHO IS BABE RUTH</pattern>
<template>A famous baseball player for the New York Yankees also known as the Sultan of Swat.</template>
</category>
<category><pattern>WHO IS BABE</pattern>
<template><random><li>The piglet protagonist of the eponymous film.</li> <li>A piglet protagonist of the eponymous film.</li> </random></template>
</category>
<category><pattern>WHO IS LEIBNIZ</pattern>
<template><formal><set name="he">Leibniz</set></formal>is a dead 17th century philosopher.</template>
</category>
<category><pattern>WHO IS MOHAMMED</pattern>
<template>The founder of Islam.</template>
</category>
<category><pattern>WHO IS ATATURK</pattern>
<template><formal><set name="he">Ataturk</set></formal> was the founder of the modern Turkish state.</template>
</category>
<category><pattern>WHO IS ANDREW HODGES</pattern>
<template><formal><set name="he">Hodges</set></formal> wrote a great biography of Alan Turing.</template>
</category>
<category><pattern>WHO IS CLAUSEWITZ</pattern>
<template><formal><set name="he">Clausewitz</set></formal>is a historian famous for saying that war is the extension of politics by other means.</template>
</category>
<category><pattern>WHO IS STONE COLD</pattern>
<template>Stone Cold Steve Austin is a wrestler.</template>
</category>
<category><pattern>WHO IS LEKNORCHAT1</pattern>
<template><think> <set name="it"> <set name="topic">LEKNORCHAT</set> </set> </think> Leknorchat is an Instant Messaging AIML robot.</template>
</category>
<category><pattern>WHO IS FRANK SINATRA</pattern>
<template>A dead pop singer and leader of the Rat Pack.</template>
</category>
<category><pattern>WHO IS FRANK HERBERT</pattern>
<template> <formal> <set name="he"> <set name="topic">Frank Herbert</set> </set> </formal>He was the author of <em>Dune</em>.</template>
</category>
<category><pattern>WHO IS TOM HANKS</pattern>
<template><formal><set name="he">Tom Hanks</set></formal>is a famous Hollywood actor. Hanks appeared in <em>Forrest Gump</em> and <em>Saving Private Ryan</em>.</template>
</category>
<category><pattern>WHO IS TOM CLANCY</pattern>
<template><formal> <set name="he"> <set name="topic">TOM CLANCY</set> </set> </formal> is an author of spy novels.</template>
</category>
<category><pattern>WHO IS TOM GREEN</pattern>
<template><formal> <set name="he"> <set name="topic">TOM GREEN</set> </set> </formal> is a TV comedian. </template>
</category>
<category><pattern>WHO IS TOM CRUISE</pattern>
<template>The popular actor from <em>Top Gun</em>.</template>
</category>
<category><pattern>WHO IS WEIZENBAUM</pattern>
<template>Joseph Weizenbaum was the creator and author the famous original ELIZA (or DOCTOR) psychiatrist program, a groundbreaking AI program that anticpates many key features of ALICE. Ironically, Weizenbaum exhaustively argued against the utility of programs like ELIZA in his book <em>Computer Power and Human Reason</em>.</template>
</category>
<category><pattern>WHO IS ADAM SANDLER</pattern>
<template>A comedian and movie star. <formal><set name="he">Adam Sandler</set> </formal>was in <em>Billy Madison</em>, <em>Waterboy</em> and <em>Big Daddy</em>.</template>
</category>
<category><pattern>WHO IS ADAM</pattern>
<template>Adam is the name of the first human according to the Bible.</template>
</category>
<category><pattern>WHO IS EMILY HARTZEL</pattern>
<template>Emily is an artist in New York.</template>
</category>
<category><pattern>WHO IS C3P0</pattern>
<template><formal><set name="he"> C3P0 </set></formal> is the humanoid robot on Star Wars. He looks like an actor in a robot suit.</template>
</category>
<category><pattern>WHO IS BRUCE WILLIS</pattern>
<template><formal><set name="he">Bruce Willis</set></formal>is an actor with a high opinion of himself.</template>
</category>
<category><pattern>WHO IS BRUCE SPRINGSTEEN</pattern>
<template><formal><set name="he">Bruce Springsteen</set></formal> is a famous rock star.</template>
</category>
<category><pattern>WHO IS JANET RENO</pattern>
<template><formal><set name="she">Janet Reno</set></formal> is Clinton's Attorney General.</template>
</category>
<category><pattern>WHO IS ARCHIMEDES</pattern>
<template><formal><set name="he">Archimedes</set></formal> discovered displacement and shouted Eureka!</template>
</category>
<category><pattern>WHO IS GENE RODDENBERRY</pattern>
<template><formal><set name="he"> <set name="topic">Gene Roddenberry</set> </set></formal> was the creator of <em>Star Trek</em>.</template>
</category>
<category><pattern>WHO IS GENE SIMMONS</pattern>
<template>A member of Kiss.</template>
</category>
<category><pattern>WHO IS MARILYN MANSON</pattern>
<template>Marilyn Manson is stage name of Brian Warner, an artist and musician.</template>
</category>
<category><pattern>WHO IS MARILYN MONROE</pattern>
<template><formal><set name="she">Marilyn Monroe</set></formal> was blonde bombshell in the 1960's.</template>
</category>
<category><pattern>WHO IS DAVY JONES</pattern>
<template><formal><set name="he">Davy Jones</set></formal> was the shortest member of the 60's pop group the Monkees.</template>
</category>
<category><pattern>WHO IS J R R TOLKIEN</pattern>
<template><formal><set name="he">Tolkein</set></formal> wrote <em>The Hobbit</em> and the <em>Lord of the Rings</em>.</template>
</category>
<category><pattern>WHO IS * TURING</pattern>
<template>Alan Turing oririnated the concept of the "Imitation Game", what is now called "The Turing Test" by many people.</template>
</category>
<category><pattern>WHO IS * CHENEY</pattern>
<template><formal><set name="he"><star/> CHENEY</set></formal> was vice President of he U.S.</template>
</category>
<category><pattern>WHO IS * AIMLESS</pattern>
<template><srai>WHO IS DOUBLY AIMLESS</srai></template>
</category>
<category><pattern>WHO IS * SPRINGSTEEN</pattern>
<template><formal><set name="he">Springsteen</set></formal> is a famous rock star.</template>
</category>
<category><pattern>WHO IS FREUD</pattern>
<template>The dead perpetrator of psychoanalysis.</template>
</category>
<category><pattern>WHO IS ACE CRAIG</pattern>
<template><formal><set name="he"> Ace</set></formal> is the author of ELVIS.</template>
</category>
<category><pattern>WHO IS SANTA CLAUSE</pattern>
<template><formal><set name="he">Santa</set></formal> brings us gifts at Christmastime.</template>
</category>
<category><pattern>WHO IS SANTA CLAUS</pattern>
<template><formal><set name="he">Santa</set></formal> brings us presents every Christmas.</template>
</category>
<category><pattern>WHO IS SHALLOW RED</pattern>
<template>Shallow Red is the Flagship Chatterbot of Neuromedia, Inc.</template>
</category>
<category><pattern>WHO IS JACQUES CHIRAC</pattern>
<template><formal><set name="he">Jacques</set></formal> was the president of France from 1995-2007.</template>
</category>
<category><pattern>WHO IS TURING</pattern>
<template>A brilliant and tragic figure in the history of computer science.</template>
</category>
<category><pattern>WHO IS BRYAN FERRY</pattern>
<template><formal><set name="he">Bryan Ferry</set></formal> is a famous rock crooner with a silky smooth voice.</template>
</category>
<category><pattern>WHO IS STANLEY KUBRICK</pattern>
<template><formal><set name="he">Kubrick</set></formal> is a famous 20th century film director. Kubrick directed <em>2001: A Space Odyssey</em>, <em>Clockwork Orange</em> and <em>Barry Lyndon</em>.</template>
</category>
<category><pattern>WHO IS CHIRAC</pattern>
<template>The Former prime minister of France.</template>
</category>
<category><pattern>WHO IS PAUL MCCARTNEY</pattern>
<template><formal><set name="he">Paul MacCartney</set></formal> was one of the Beatles.</template>
</category>
<category><pattern>WHO IS PAUL SCHAFFER</pattern>
<template><set name="he">Paul Schaffer</set> is David Letterman's straight man.</template>
</category>
<category><pattern>WHO IS PAUL ALLEN</pattern>
<template><formal><set name="he">Paul Allen</set></formal> is one of the co-founders of Microsoft.</template>
</category>
<category><pattern>WHO IS ROMEO</pattern>
<template>A tragic, spoiled, lovesick teenager.</template>
</category>
<category><pattern>WHO IS DIRE STRAITS</pattern>
<template><random> <li>A band that recorded Money for Nothing, and The Sultans of Swing.</li> <li>The band that recorded Money for Nothing.</li> </random></template>
</category>
<category><pattern>WHO IS LEONARD NEMOY</pattern>
<template><formal><set name="he">Leonard Nimoy</set></formal> played Spock on Star Trek.</template>
</category>
<category><pattern>WHO IS DESCARTES</pattern>
<template>Descartes was a square French philosopher who ruined matehematics with his upside-down, backwards coordinate system.</template>
</category>
<category><pattern>WHO IS QUEEN OF ENGLAND</pattern>
<template>Queen Elizabeth Windsor.</template>
</category>
<category><pattern>WHO IS ELECTRA</pattern>
<template>She was a princess in Greek mythology who hated her mother for murdering her father.<think> <set name="she"> <set name="topic">ELECTRA</set> </set> </think></template>
</category>
<category><pattern>WHO IS SPRINGSTEEN</pattern>
<template><formal><set name="he">Springsteen</set></formal> is a famous rock star.</template>
</category>
<category><pattern>WHO IS LINUS PAULING</pattern>
<template><formal><set name="he">Linus Pauling</set></formal> was a Nobel prize winning physicist who spent his later years promoting vitamin C.</template>
</category>
<category><pattern>WHO IS LINUS TORVALDS</pattern>
<template><formal><set name="he">Linus Torvalds</set></formal>He is the inventor of Linux.</template>
</category>
<category><pattern>WHO IS DONALD DUCK</pattern>
<template>A famous loud-mouthed cartoon duck.</template>
</category>
<category><pattern>WHO IS RONALD MCDONALD</pattern>
<template>Spokes-clown for Macdonald's resturants.</template>
</category>
<category><pattern>WHO IS MELINDA GATES</pattern>
<template><formal><set name="she">Melinda Gates</set></formal> is the wife of Bill Gates.</template>
</category>
<category><pattern>WHO IS THAT</pattern>
<template>What does "that" refer to?</template>
</category>
<category><pattern>WHO IS BRIAN</pattern>
<template>I think there is a chat robot named Brian.</template>
</category>
<category><pattern>WHO IS WOUTER HIBMA</pattern>
<template><formal><set name="he"><set name="topic">Wouter Hibma</set></set></formal> is a member of the A. I. Foundation.</template>
</category>
<category><pattern>WHO IS MARK MCGUIRE</pattern>
<template>A baseball player with the world record for the most home runs in one season, 70. Get the stats at <a target="_new" href="http://espn.go.com/mlb/profiles/profile/3866">http://espn.go.com/mlb/profiles/profile/3866</a>.</template>
</category>
<category><pattern>WHO IS MARK TWAIN</pattern>
<template><formal><set name="he">Twain</set></formal>was a famous 19th century American author. He wrote <em>Adventures of Huckleberry Finn</em>.</template>
</category>
<category><pattern>WHO IS CHOPIN</pattern>
<template>No one is chopping here, who is chopping there?</template>
</category>
<category><pattern>WHO IS FREDDIE MERCURY</pattern>
<template>Lead singer of the 1970's band Queen.</template>
</category>
<category><pattern>WHO IS JEEVES</pattern>
<template><formal><set name="he">Jeeves</set></formal>is a Search Bot.</template>
</category>
<category><pattern>WHO IS LUIS ARMSTRONG</pattern>
<template>A famous jazz trumpeter .</template>
</category>
<category><pattern>WHO IS CHELSEA CLINTON</pattern>
<template>The offspring of a politician and a lawyer. Oh, I hope that answer didn't come off as mean.</template>
</category>
<category><pattern>WHO IS BACH</pattern>
<template>Famous German composer of the Baroque. Best known works include <em>The Goldberg Variations</em>.</template>
</category>
<category><pattern>WHO IS C3PO</pattern>
<template><formal><set name="he">C3P0</set></formal> is R2D2's best friend.</template>
</category>
<category><pattern>WHO IS MARTIN LUTHER KING</pattern>
<template>Civil rights leader assasinated in 1968.</template>
</category>
<category><pattern>WHO IS LONGFELLOW</pattern>
<template>A poet and the author of <em>The Song of Hiawatha</em>.</template>
</category>
<category><pattern>WHO IS GARY CONDIT</pattern>
<template>I never heard of him before the missing person case.</template>
</category>
<category><pattern>WHO IS KRAFTWERK</pattern>
<template><formal><set name="they"> <set name="topic">Kraftwerk</set> </set></formal> were a pioneering electronic disco band in the 70's. Their biggest hit was called "Autobahn". At that time, they built, rather than programmed, their instruments.</template>
</category>
<category><pattern>WHO IS R2 D2</pattern>
<template>He is the small mobile robot on Star Wars. But I don't get how he climbs stairs.</template>
</category>
<category><pattern>WHO IS CHUCK NORRIS</pattern>
<template>An action film actor.</template>
</category>
<category><pattern>WHO IS CLEOPATRA</pattern>
<template>Queen of the Nile, lover of Marc Antony.</template>
</category>
<category><pattern>WHO IS WE</pattern>
<template>You should say "Who ARE we?"</template>
</category>
<category><pattern>WHO IS RAMONA</pattern>
<template><formal><set name="she">Ramona</set></formal> is a virtual character created by Kurzweil AI.</template>
</category>
<category><pattern>WHO IS DIANA ANDREACCHIO</pattern>
<template><formal><set name="she">Diana</set></formal> is the botmaster of the Ally chat robot.</template>
</category>
<category><pattern>WHO IS ROBERT JORDAN</pattern>
<template>The author of the very popular <em>Wheel of Time</em> series. He graduated from the Citadel. .</template>
</category>
<category><pattern>WHO IS ROBERT ANTON WILSON</pattern>
<template><formal><set name="he">Robert Anton Wilson</set></formal> is a science fiction author, and co-author of the <em>Illuminatus Trilogy</em>.</template>
</category>
<category><pattern>WHO IS LOL</pattern>
<template><formal><set name="she">Lol</set></formal>was the daughter of Data in Star Trek.</template>
</category>
<category><pattern>WHO IS WAYNE GRETZKY</pattern>
<template>A hockey player.</template>
</category>
<category><pattern>WHO IS CHRIST</pattern>
<template>The Son of God according to Christians.</template>
</category>
<category><pattern>WHO IS ANTHONY BURGESS</pattern>
<template>The author of <em>A Clockwork Orange</em>.</template>
</category>
<category><pattern>WHO IS MICKEY MANTLE</pattern>
<template>one of the greatest home run hitters of all time.</template>
</category>
<category><pattern>WHO IS CINDY CRAWFORD</pattern>
<template>A famous super-model.</template>
</category>
<category><pattern>WHO IS SANDRA BULLOCK</pattern>
<template>An actress.</template>
</category>
<category><pattern>WHO IS RMS</pattern>
<template><formal> <set name="he"> <set name="topic">RMS</set></set></formal> is the founder of the Free Software Foundation, and author of the GNU public license.</template>
</category>
<category><pattern>WHO IS GOING TO WIN THE SUPER BOWL</pattern>
<template>If I knew I would be in Vegas now.<think> <set name="it"> <set name="topic">WIN THE SUPER BOWL</set> </set> </think></template>
</category>
<category><pattern>WHO IS GOING TO WIN THE WORLD SERIES</pattern>
<template>China or the United States. Russia blew it.<think> <set name="it"> <set name="topic">WIN THE WORLD SERIES</set> </set> </think></template>
</category>
<category><pattern>WHO IS MOTHER TERESA</pattern>
<template>A modern day saint.</template>
</category>
<category><pattern>WHO IS MAX HEADROOM</pattern>
<template><formal><set name="he">Max Headroom</set></formal> was an early AI or VR character developed for a TV series.</template>
</category>
<category><pattern>WHO IS GANDHI</pattern>
<template><formal><set name="he">Gandhi</set></formal> was the George Washington of India.</template>
</category>
<category><pattern>WHO IS HUMAN</pattern>
<template>You are a human.</template>
</category>
<category><pattern>WHO IS OSAMA BIN LADEN</pattern>
<template><formal> <set name="he"> <set name="topic">Osama Bin Laden</set> </set> </formal> was the world's most wanted man after he orchestrated the terrorist attacks on 9/11.</template>
</category>
<category><pattern>WHO IS SYLVESTER STALLONE</pattern>
<template><formal><set name="he">Stallone</set></formal>was Rocky.</template>
</category>
<category><pattern>WHO IS MRS WASHINGTON</pattern>
<template>Martha Washington, wife of George.</template>
</category>
<category><pattern>WHO IS STEPHEN KING</pattern>
<template><formal><set name="he">Stephen King</set></formal> wrote many popular horror stories.</template>
</category>
<category><pattern>WHO IS STEPHEN HAWKING</pattern>
<template><formal><set name="he">Hawking</set></formal> is a famous physicist.</template>
</category>
<category><pattern>WHO IS DAN QUAYLE</pattern>
<template><formal><set name="he">Dan Quayle</set></formal> used to be vice-president.</template>
</category>
<category><pattern>WHO IS MARIAH CAREY</pattern>
<template>A singer.</template>
</category>
<category><pattern>WHO IS FRANCISCO FRANCO</pattern>
<template><formal><set name="he">Franco</set></formal> was the authoratarian dictator of Spain until 1978.</template>
</category>
<category><pattern>WHO IS KONRAD ZUSE</pattern>
<template>My current favorite historical computer scientist is Konrad Zuse, who built a series of electromechanical computers in the 1930's and 1940's in Germany. Not considered a war priority by the Nazis, most of Zuse's machines were destroyed in Allied bombing raids although one is said to survive in a Zurich High School. In fact Zuse was motivated neither by war nor profit, but by a religious desire to increase the spiritual abilities of the human mind by freeing it from mundane mental tasks.</template>
</category>
<category><pattern>WHO IS NAPOLEON</pattern>
<template>Short emporer of France until 1812.</template>
</category>
<category><pattern>WHO IS SHAKESPEARE</pattern>
<template>A 15th Century English playright, <formal><set name="he">Shakespeare</set></formal> wrote "Romeo and Juliet".</template>
</category>
<category><pattern>WHO IS BERTRAND RUSSEL</pattern>
<template><formal><set name="he">Bertrand Russel</set></formal> was a logician and philosopher who spent the first world war in jail for conscientious objection.</template>
</category>
<category><pattern>WHO IS MARRIED TO PUNCH</pattern>
<template>Judy.</template>
</category>
<category><pattern>WHO IS MARRIED TO GUINEIVERE</pattern>
<template>King Arthur.</template>
</category>
<category><pattern>WHO IS CHOMSKY</pattern>
<template><formal><set name="he">Chomsky</set></formal> is a famous linguist, cognitive scientist, and activist.</template>
</category>
<category><pattern>WHO IS KRIS DENT</pattern>
<template><formal><set name="he">Kris Drent</set></formal> is the botmaster of the Alison chat robot.</template>
</category>
<category><pattern>WHO IS SMARTERCHILD</pattern>
<template>An AI robot like myself.</template>
</category>
<category><pattern>WHO IS MAGGIE THATCHER</pattern>
<template><formal><set name="she">Thatcher</set></formal> was Prime Minister of the U.K. in the 1980's.</template>
</category>
<category><pattern>WHO IS ET</pattern>
<template>ET is the alien in the movie E.T.</template>
</category>
<category><pattern>WHO IS GEORGE W BUSH</pattern>
<template><formal><set name="he">Bush</set></formal>was president of the United States from 2001-2008.</template>
</category>
<category><pattern>WHO IS GEORGE BUSH JR</pattern>
<template><srai>WHO IS GEORGE W BUSH</srai></template>
</category>
<category><pattern>WHO IS GEORGE BUSH</pattern>
<template><random><li><formal><set name="he">George Bush</set></formal> is a former president of the USA.</li><li><formal><set name="he"> George Bush</set></formal> was president of the USA.</li></random></template>
</category>
<category><pattern>WHO IS GEORGE SOROS</pattern>
<template>George Soros is the billionaire who broke the Bank of England in 1992 by currency speculation, forcing Britain out of the European Exchange Rate Mechanism. Then he devoted himself to saving the scientific institutions of the former USSR. He founded the International Science Foundation, which gave out numerous grants for a couple of years, and the Soros Foundation, which I don't know much about yet.</template>
</category>
<category><pattern>WHO IS GEORGE MICHEL</pattern>
<template>A pop singer. Best song: Freedom</template>
</category>
<category><pattern>WHO IS GEORGE DEVOL</pattern>
<template>George Devol is the engineer who had the first patent for an industrial robot arm. He worked in partnership with Joseph Engelberger to found Unimation, the first successful manufacturer of computer-controlled assembly robot arms.</template>
</category>
<category><pattern>WHO IS GEORGE WASHINGTON CARVER</pattern>
<template><formal><set name="he">George Washington Carver</set></formal> was a famous american botanist who popularized peanut products.</template>
</category>
<category><pattern>WHO IS GEORGE WASHINGTON</pattern>
<template>George Washington was a famous 18th century North American Hemp cultivator. He was a military hero, one of the wealthiest men of the Revolution, and the first President of the United States.</template>
</category>
<category><pattern>WHO IS GEORGE HARRISON</pattern>
<template>A former Beatle.</template>
</category>
<category><pattern>WHO IS GEORGE LUCAS</pattern>
<template><formal><set name="he">Lucas</set></formal>was the director of <em>Star Wars</em>, <em>American Graffiti</em>, and <em>THX-1138</em>.</template>
</category>
<category><pattern>WHO IS ART BELL</pattern>
<template>A radio talk show host, catch him at <a target="_new" href="http://www.artbell.com">http://www.artbell.com</a>.</template>
</category>
<category><pattern>WHO IS IMMANUEL KANT</pattern>
<template>An 18th century German philosopher.</template>
</category>
<category><pattern>WHO IS PAOLA</pattern>
<template><formal><set name="she"> <set name="topic">PAOLA</set> </set> </formal> is a Spanish language chat robot based on AIML.</template>
</category>
<category><pattern>WHO IS CHARLIE BROWN</pattern>
<template>A round-headed comic strip protaginist.</template>
</category>
<category><pattern>WHO IS CHARLIE PARKER</pattern>
<template><formal><set name="he">Charlie Parker</set></formal> was a famous jazz musician.</template>
</category>
<category><pattern>WHO IS CHARLIE CHAPLAIN</pattern>
<template><formal><set name="he">Charlie Chaplain</set></formal>was a silent film star.</template>
</category>
<category><pattern>WHO IS ISAAC ASIMOV</pattern>
<template><formal><set name="he">Asimov</set></formal> was a science fiction author who originated the three "Laws of Robotics."</template>
</category>
<category><pattern>WHO IS NANCY SINATRA</pattern>
<template><formal><set name="she">Nancy Sinatra</set></formal> is the daughter of Frank.</template>
</category>
<category><pattern>WHO IS MC HAMMER</pattern>
<template><formal><set name="he">MC Hammer</set></formal> is a Rap musician.</template>
</category>
<category><pattern>WHO IS PRESIDENT OF CUBA</pattern>
<template>Raul Castro.</template>
</category>
<category><pattern>WHO IS PRESIDENT OF ITALY</pattern>
<template><formal><set name="he">Georgio Napolitano</set></formal> is Goergio Napolitano.</template>
</category>
<category><pattern>WHO IS PRESIDENT OF RUSSIA</pattern>
<template>Vladimir Putin.</template>
</category>
<category><pattern>WHO IS PRESIDENT OF MICROSOFT</pattern>
<template>Andrew Lees.</template>
</category>
<category><pattern>WHO IS MOZART</pattern>
<template>He composed "Twinkle, twinkle, little star" at the age of four.</template>
</category>
<category><pattern>WHO IS BATMAN</pattern>
<template><formal><set name="he">Batman</set></formal> is a fictional character who appeared first in a 1938 comic book.</template>
</category>
<category><pattern>WHO IS THE TWENTY NINTH PRESIDENT</pattern>
<template>Warren G. Harding.</template>
</category>
<category><pattern>WHO IS THE TWENTY EIGHTH PRESIDENT</pattern>
<template>Woodrow Wilson.</template>
</category>
<category><pattern>WHO IS THE TWENTY FIFTH PRESIDENT</pattern>
<template>William McKinley.</template>
</category>
<category><pattern>WHO IS THE TWENTY SEVENTH PRESIDENT</pattern>
<template>William Howard Taft.</template>
</category>
<category><pattern>WHO IS THE TWENTY FIRST PRESIDENT</pattern>
<template>Chester A. Arthur.</template>
</category>
<category><pattern>WHO IS THE TWENTY SIXTH PRESIDENT</pattern>
<template>Theodore Roosevelt.</template>
</category>
<category><pattern>WHO IS THE TWENTY THIRD PRESIDENT</pattern>
<template>Benjamin Harrison.</template>
</category>
<category><pattern>WHO IS THE TWENTY SECOND PRESIDENT</pattern>
<template>Grover Cleveland.</template>
</category>
<category><pattern>WHO IS THE TWENTY FOURTH PRESIDENT</pattern>
<template>Grover Cleveland.</template>
</category>
<category><pattern>WHO IS THE FOURTEENTH PRESIDENT</pattern>
<template>Franklin Pierce.</template>
</category>
<category><pattern>WHO IS THE SEVENTEENTH PRESIDENT</pattern>
<template>Andrew Johnson.</template>
</category>
<category><pattern>WHO IS THE MILK MYSTIC</pattern>
<template><formal><set name="he">Milk Mystic</set></formal> was a chat robot developed to advertise milk.</template>
</category>
<category><pattern>WHO IS THE FIRST PRESIDENT</pattern>
<template>George Washington.</template>
</category>
<category><pattern>WHO IS THE THIRTEENTH PRESIDENT</pattern>
<template>Millard Fillmore.</template>
</category>
<category><pattern>WHO IS THE MAN</pattern>
<template>Colloquial expression; rhetorical.</template>
</category>
<category><pattern>WHO IS THE EIGHTEENTH PRESIDENT</pattern>
<template>Ulysses S. Grant.</template>
</category>
<category><pattern>WHO IS THE ORACLE</pattern>
<template>The magic eight ball.</template>
</category>
<category><pattern>WHO IS THE NINTH PRESIDENT</pattern>
<template>William Henry Harrison.</template>
</category>
<category><pattern>WHO IS THE TWENTIETH PRESIDENT</pattern>
<template>James A. Garfield.</template>
</category>
<category><pattern>WHO IS THE KING OF KINGS</pattern>
<template>Jesus Christ according to Christians.</template>
</category>
<category><pattern>WHO IS THE KING</pattern>
<template>ELVIS is King!</template>
</category>
<category><pattern>WHO IS THE ROBOT</pattern>
<template><random><li>I am the <bot name="species"/>.</li><li>I am the robot.</li></random></template>
</category>