File size: 58,450 Bytes
6fa4bc9 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 | {
"paper_id": "P80-1002",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T08:43:09.369745Z"
},
"title": "UNDERSTANDING SCENE DESCRIPTIONS AS EVg~NT SIMULATIONS I",
"authors": [
{
"first": "David",
"middle": [
"L"
],
"last": "Waltz",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Illinois at Urbana-Champaign",
"location": {}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "2The term \"scene\" is intended to coyer both static scenes and dynamic scenes (or events) that are bounded in space and time.",
"pdf_parse": {
"paper_id": "P80-1002",
"_pdf_hash": "",
"abstract": [
{
"text": "2The term \"scene\" is intended to coyer both static scenes and dynamic scenes (or events) that are bounded in space and time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "The language of scene descriptions 2 must allow a hearer to build structures of schemas similar (to some level of detail) to those the speaker has built via perceptual processes. The understanding process in general requires a hearer to create and run \"event ~\"",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "to check the consistency and plausibility of a \"picture\" constructed from a speaker's description. A speaker must also run similar event simulations on his own descriptions in order to be able to judge when the hearer has been given sufficient information to construct an appropriate \"picture\", and to be able to respond appropriately to the heater's questions about or responses to the scene description. to them and what information must be found or generated to account for the inferences we know are actually made.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "An entity (human or computer) that could be said to fully understand scene descriptions would have to have a broad range of abilities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "For example, it would have to be able to make predictions about likely futures; to judge certain scene descriptions to be implausible or impossible; to point to items in a scene, given a description of the scene; and to say whether or not a scene description corresponded to a given scene experienced through other sensory modes. 3 In general, then, the entity would have to have a sensory system that it could use to generate scene representations to be compared with scene representations it had generated on the basis of natural language input.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "In this paper I concentrate on I) the problems of making appropriate predictions and inferences about described scenes, and 2) the problem of judging when scene descriptions are physically implausible or impossible.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "I do not consider directly problems that would require a vision system, problems such as deciding whether a linguistic scene description is appropriate for a perceived scene, or generating lingulstic scene descriptions from visual input, or learning scene description lar4uage through experience. I also do not consider speech act aspects of scene descriptions in much detail here.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "I believe that the principles of speech acts transcend topics of language; I am not convinced that the study of scene descriptions would lead to major insights into speech acts that couldn't be as well gained through the study of language in other domains.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "3In general ! believe that many of the event simulation procedures ought to involve kinesthetic and tactile information.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "I by no means intend the simulations to be only visual, although we have explored the A1 aspects of vision far more than those of any other senses.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE PROBLEM AREA",
"sec_num": "1."
},
{
"text": "however, that the study of scene descriptions has a considerable bearing on other areas of language analysis, including syntax, semantics, and pragmatics.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "For example, consider the following sentences:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "($I) I saw the man on the hill with my own eyes. (32) I saw the man on the hill with a telescope. ($3) I saw the man on the hill with a red ski mask.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "The well-known sentence $2 is truly ambiguous, but $I and $3, while likely to be treated as syntactically similar to $2 by current parsers, are each relatively unambiguous;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "I would like to be able to explain how a system can choose the appropriate parsings in these cases,",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "as well as how a sequence of sentences can add constraints to a single scene-centered representation, and aid in disamDiguation. For example, if given the pair of sentences:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "($2) I saw the man on the hill with a telescope. ($4) I cleaned the lens to get a better view of him. a language understanding system should be able to select the appropriate reading of $2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "I would also like to explore mechanisms that would be appropriate for judging that ($5) My dachshund bit our mailman on the ear.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "requires an explanation (dachshunds could not jump high enough to reach a mailman's ear, and there is no way to choose between possible scenarios which would get the dachsund high enough or the mailman low enough for the biting to take place). The mechanisms must also be able to judge that the sentences: ($6) My doberman bit our mailman on the ear. ($7) My dachshund bit our gardener on the ear. ($8) My dachshund bit our mailman on the leg. do not require explanations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "A few words about the importance of explanation are in order here.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "If a program could judge correctly which scene descriptions were plausible and wnich were no5, but could not explain why it made the judgements it did, I think I would feel profoundly dissatisfied with and suspicious of the program as a model of language comprehension.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "A program ought to consider the \"right options\" and decide among them for the \"right reasons\"a if it is to be taken seriously as a model of cognition. of supporting other objects, as well as other properties such as \"hollow\" or \"solid\", and SO on.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I do believe,",
"sec_num": null
},
{
"text": "I A \"visual analog model\" of $12-$15.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fi~e",
"sec_num": null
},
{
"text": "Dynamic scene descriptions can use detail addition also, but more co-,-only they use either the mechanisms of \"successive refinement\" [3] or \"temporal addition\". \"Temporal addition\" refers to the process of describin 6 events through a series of tlme-ordered static scene descriptions, as in:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fi~e",
"sec_num": null
},
{
"text": "($16)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fi~e",
"sec_num": null
},
{
"text": "Our mailman fell while running from our dachshund. ($17) The dachshund bit the mailman on the ear. \"Successive refinement\" refers to a process where an introductory sentence sets up a more or less prototyplcal event which is then modified by succeeding sentences, e.g. by listing exceptions to one's ordinary expectations of the prototype, or by providing specific values for optional items in he prototype, or by similar means.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fi~e",
"sec_num": null
},
{
"text": "The following sentences provide an example of \"successive refinement\": ($18) A car hit a boy near cur house. ($19) The car was speeding east~ard on Main Street ~t the time. ($20) The boy, ~ was riding a bicycle, was knocked to th~ ~round.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Fi~e",
"sec_num": null
},
{
"text": "What should a scene description understanding system to do with a linguistic scene description?",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "Basically I) verify plausIDillty, 2) make inferences and predictions, 3) act if action is called for, and a) remember whatever is important.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "For the time being, I am only considering I) and 2) in detail.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "In order to carry out I) and 2), I would llke my system to turn scene descriptions (statiu or dynamic)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "into a time sequence of \"expanded spatial analog models\", where each expanded spatial analog model represents either I) a set of spatial relationships (as in $12-$15), or 2) spatial relationships plus models of actions in progress, chosen from a fairly large set of primitive actions (see below), or 3) prototypical actions that can stand for sequences of primitive actions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "These prototypical actions would have to be fitted into the current context, and modified according to the dictates of the objects and modifiers that were supplied in the scene description.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "The action prototype would have associated selection restrictions for objects; if the objects in the scene description matched the selection restrictions, then there would be no need to expand the prototype into primitives, and the \"before\" and \"after\" scenes (similar to pro-and post-condltions) of the action prototype could be used safely.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "If the selection restrictions were violated by objects in the scene, or if modifiers were present, or if the context did not match the preconditions, then it would have to be possible to adapt the action prototype \"appropriately\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "It would also have to be possible to reason abOut the action without actually running the event simulation sequence underlying it in its entirety; sections that would have to be modified, plus before and after models, might be the only portions of the simulation actually run. The rest of the prototype could be treated as a kind of \"black box\" with known input-output characteristics. As an example of the expansion of a non-primitive action into primitive actions, consider \"bite x y\"; its steps are: 1)[set-up] instantlate x ~ as a \"biting-thing\" --defaults = mouth, teeth, jaws of an animate entity; 2) instantiate y as \"thlng-bitten\"; 3) [before] x is open and does not touch y and x partially surrounds y (i.e. y is not totally Inside x); ~) x is closing on y; 5) [actlon] x is touching y, preferably in two places on opposite sides of y and x continues to close; 6) x deforms y; 7)falter]",
"cite_spans": [
{
"start": 643,
"end": 651,
"text": "[before]",
"ref_id": null
},
{
"start": 770,
"end": 778,
"text": "[actlon]",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "x is moving away from y, and no longer touches y. As the examples below illustrate, sometimes an event simulation simply cannot be set up because information is missing, or several possible \"pictures\" are equally plausible, or the objects and actions being described cannot be fitted together for a variety of reasons, or the results of running the simulation do not match our knowledge of the world or the following portions of the scene description, and so on.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "It is also important to empbaclze that our ultimate interest is in being able to succeed in setting up and running event simulations; therefore I have for the most part chosen ambiguous examples where at least one event slmuiation succeeds.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "THE GOALS OF A SCENE UNDERSTANDING SYSTEM",
"sec_num": "3."
},
{
"text": "Consider Bar-Hillel's famous sentence [4]: 6 ($I0) The box is in the pen.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "TRANSLATING AN OLD EXAMPLE INTO NEW MECHANISMS",
"sec_num": "4.1"
},
{
"text": "Judgement is necessary to choose the appropriate reading, i.e. that \"pen\" = playpen. Minor extensions to Boggess's program could allow it to choose \u2022 the appropriate referent for pen. Penl (the writing implement) would be defined as having a relatively fixed size (subject to being overridden by modifiers, as in \"tiny pen\" or \"twelve inch pen\"), but the size of cen2 (the enclosure) would be allowed to vary over a range of values (as would the size of box).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Plausibility",
"sec_num": null
},
{
"text": "The program could attempt to model the sentence by instantlatlng standard (default-sized) models of box, penl, and pen2, and attempting to assign the objects to positions in a coordinate system such that the box would be in peril or pen2.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Plausibility",
"sec_num": null
},
{
"text": "Pen; could not take part in such a spatial analog model both because of pen1's rigid size, and the extreme shrinkage that would be required of box (outside box's allowed range) to make it smaller than the pen;, and also because pen; is not a container (i.e. hollow object).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Plausibility",
"sec_num": null
},
{
"text": "Pen2 and box prototypes could be fitted together without problems, and could thus be chosen as the most appropriate interpretation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Plausibility",
"sec_num": null
},
{
"text": "Extending Boggess's program to deal with most of the other examples given in this paper so far would be harder, although I believe that $I-$4 could be handled without too much difficulty. Let us look at $2 and S~ in more detail: ($2) I saw the man on the hill with a telescope. ($4) I cleaned the lens to get a better view of him.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A SIMPLE EVENT SIMULATION",
"sec_num": "4.2"
},
{
"text": "After being told $2, a system would either pick one of the possible interpretations as most plausible, or it might be unable to choose between competing interpretations, and keep them both. When it is told $4, the system must first discover that \"the lens\" is part of the telescope. Having done this, $4 unambiguously forces the placement of the speaker to be close enough to the telescope to touch it. This is because all common interpretations of clean require the agent to be close to the object. At least two possible interpretations still remain: I) the speaker is distant from the man on the hill, and is using the telescope to view the man; or 2) the speaker, telescope, and man on the hill are all close together.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A SIMPLE EVENT SIMULATION",
"sec_num": "4.2"
},
{
"text": "The phrase \"to get a better view of him\" refers to the actions of the speaker in viewing the man, and thus makes interpretation I) much more likely, but 2) is still conceivable. The reasoning necessary to choose I) as most plausible is rather subtle, involving the idea that telescopes are usually used to look at distant objects.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A SIMPLE EVENT SIMULATION",
"sec_num": "4.2"
},
{
"text": "In any case, the proposed mechanisms should allow a system to discard an interpretatllon of $2 and S~ where the man on the hill had a telescope and was distant from the speaker.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A SIMPLE EVENT SIMULATION",
"sec_num": "4.2"
},
{
"text": "6A central figure in the machine translation effort of the late 5O's and early 6O's, Bar-Hillel cited this sentence in explaining why machine translation was impossible.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A SIMPLE EVENT SIMULATION",
"sec_num": "4.2"
},
{
"text": "He subsequently quit the field.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A SIMPLE EVENT SIMULATION",
"sec_num": "4.2"
},
{
"text": "Let us also look again at $5: 2) analyze the preconditions for \"bite\" to find that they require the dog's mouth to surround the mailman's ear;",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SIMULATING AN IMPLAUSIBLE EVENT",
"sec_num": "4.3"
},
{
"text": "($5)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SIMULATING AN IMPLAUSIBLE EVENT",
"sec_num": "4.3"
},
{
"text": "3) see whether the dachshund's mouth can reach the mailman's ear directly (no); ~) see whether the dog can stretch high enough to reach (no; this test would require an articulated model of the dog's skeleton or a prototypical representation of a dog on its hind legs.); 5) see whether a dachshund could jump high enough (no; tbls step is decidedly non-trivial to implement!\" ); 6) see whether the mailman ordinarily gets into any positions w~ere the dog could reach his ear (no); 7) conclude that the mailman could not be bitten as stated unless default sizes or movement ranges are relaxed in some way. Since there is no clearly preferred way to relax the defaults, more information is necessary to make this an \"unambiguous\" description. I have quoted \"unambiguous\" because the sentence $5 is not ambiguous in any ordinary sense, lexically or structurally.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SIMULATING AN IMPLAUSIBLE EVENT",
"sec_num": "4.3"
},
{
"text": "What is ambiguous are the conditions and actions whlch could have led up to $5. Strangely enough, the ordinary actions of mailmen (checked in step 6) seem relevant to the judgement of plausibility in this sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SIMULATING AN IMPLAUSIBLE EVENT",
"sec_num": "4.3"
},
{
"text": "As evidence for this analysis, note that the substitution of \"gardener\" for \"mailman\" turns ($5) into a sentence that can be simulated without problems. I think that it is significant that such peripheral factors can be influential in Judging the plausibility of an event.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SIMULATING AN IMPLAUSIBLE EVENT",
"sec_num": "4.3"
},
{
"text": "At the same time, I am aware that the effect in this case is rather weak, that people can accept this sentence without noting any strangeness, so I do not want to draw conclusions that are too strong.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SIMULATING AN IMPLAUSIBLE EVENT",
"sec_num": "4.3"
},
{
"text": "Consider the following passage:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "(91)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "YOU are at one end of a vast hall stretching forward out of sight to the west.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "There are openings to either side.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "Nearby, a wide stone staircase leads downward.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "The hall is filled with wisps of white mist swaying to and fro almost as if alive.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "A cold wind blows up the staircase. There is a passage at the top of the dome behind you.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "Rough stone steps lead up the d~e.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "Given this passage (taken from the computer game \"Adventure\") one can infer that it is possible to move to the west, north, south, or east (up the rough stone steps).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "Note that this information is buried in the description; in order to infer this information, it would be useful to construct a spatial analog model, TAltbough one could do it by simply including in the definition of a dog information about how high a dog can Jump, e.g. no higher than twice the dog's length. However I consider tbls something of a \"hack\", because it iKnores some other problems, for example the timing problem a dog would face in biting a small target like a person's ear at the apex of its highest jump.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "I would prefer a solution that could, if necessary, perform an event simulation for step 5), rather than trust canned data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "with \"you\" facing west, and the scene features placed appropriately.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "In playing Adventure, it is also necessary to remember salient features of the scenes described so that one can reoo@~Lize the same room later, given a passage such as: (P2) You're in hall of mists.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "Rough stone steps lead up the dome. There is a threatening little dwarf in the room with you. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~.4 MAKING INFERENCES ABOUT SCENES",
"sec_num": null
},
{
"text": "With some sentences there may be no plausible interpretation at all. In many of the examples which follow, it seems unlikely that we actually generate (at least consciously) an event simulation.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "MIRACLES AND WORLD RECORDS",
"sec_num": "4.5"
},
{
"text": "Rather it seems that we have some shortcuts for recognizing that certain events would have to be termed \"miraculous\" or difficult to believe. How one is able to Judge the plausibility of tsese (and how we ml~ht get a system to do so) remains s~methl~ of a mystery to me.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "MIRACLES AND WORLD RECORDS",
"sec_num": "4.5"
},
{
"text": "rapidly is an important one to consider for dealing with pronouns.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The problem of recognizing obviously implausible events",
"sec_num": null
},
{
"text": "Often we choose the appropriate referent for a pronoun because only one of the possible referents could be part of a plausible event if substituted for the pronoun. For example, \"it\" must refer to \"milk\", not \"baby\", in 329: ($29) I didn't want the baby to get sick from drinking the milk, so I boiled it.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The problem of recognizing obviously implausible events",
"sec_num": null
},
{
"text": "LA.CUAC~ I suggested in section 3 that a scene description understanding system would have to 1) verify the plausibility of a described scene, 2) make inferences or predlction~ about the scene, 3) act if action is called for, and ~) remember whatever is important.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "T~ ROLK OF EVKNT SIMULATION IN A FULu T~ORY OF",
"sec_num": "5."
},
{
"text": "As pointed out in section ~.5, event simulations may not even be need for all cases of plausibility judgement. Furthermore, scene descriptions constitute only one of many possible topics of language.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "T~ ROLK OF EVKNT SIMULATION IN A FULu T~ORY OF",
"sec_num": "5."
},
{
"text": "Nonetheless, I feel that the study of event simulation is extremely important.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "T~ ROLK OF EVKNT SIMULATION IN A FULu T~ORY OF",
"sec_num": "5."
},
{
"text": "For a number of reasons, methodological as well as theoretical, I believe that it is not only worthwhile, but also important to begin the study of scene descriptions with the world of simple physleai objects, events, and physical behaviors with simple goals. I) Methodologically it is necessary to pick an area of concentration which is restricted in some way. The world of simple physical objects and events is one of the simplest worlds that links language and sensory descriptions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "WHY ARE SIMPLE PHYSICAL SCENES WORTH CONSIDERING?",
"sec_num": "5.1"
},
{
"text": "2) As argued in the work of Piaget [5], it seems likely that we come to comprehend the world by first mastering the sensory/motor world, and then by adapting and building on our schemata from the sensory/motor world to understand progressively more abstract worlds. In the area of language Jackendoff",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "WHY ARE SIMPLE PHYSICAL SCENES WORTH CONSIDERING?",
"sec_num": "5.1"
},
{
"text": "[6] offers parallel arg,~eents. Thus the world of simple physical objects and behaviors has a privileged positions in the development of cognition and language.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "WHY ARE SIMPLE PHYSICAL SCENES WORTH CONSIDERING?",
"sec_num": "5.1"
},
{
"text": "3) Few words in English are reserved for describing the abstract world only. Most abstract words also have a physical meaning.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "WHY ARE SIMPLE PHYSICAL SCENES WORTH CONSIDERING?",
"sec_num": "5.1"
},
{
"text": "In some cases the physical meanings may provide important metaphors for understanding the abstract world, w~ile in other cases the same mechanisms that are used in the interpretation of the physical world may be shared with mechanisms that interpret the abstract world. 4) I would llke the representations I develop for linguistic scene descriptions to be compatible with representations I can imagine generating with a vision system.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "WHY ARE SIMPLE PHYSICAL SCENES WORTH CONSIDERING?",
"sec_num": "5.1"
},
{
"text": "Thus this work does have an indirect bearing on vision research: my representations characterize and put constraints on the types and forms of information I think a vision system o~nt to be able to supply. 5) Even in the physical domain, we must come to grips with some processes that resemble those involved in the generation and understanding of metaphor: matching, adaptation of schemata, ~diflcation of stereotypical items to match actual items, and the interpretation of items from different perspectives.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "WHY ARE SIMPLE PHYSICAL SCENES WORTH CONSIDERING?",
"sec_num": "5.1"
},
{
"text": "I take it as evident that every scene description, indeed every utterance, is associated with some purpose or goal of a speaker. The speaker's purpose affects the organization and order of the speaker's presentation, the items included and the items omitted, as well as word choice and stress. Any two witnesses of the same event will in general give accounts of it that differ on every level, especially if one or both witnesses were participants or ~as some special interest in the cause or outcome of the event.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SCENE D~SCRIPTIONS AND A THEORY OF ACTION",
"sec_num": "5.2"
},
{
"text": "For now I have ignored all these factOrS of scene description understanding; I have not attempted an account of the deciphering of a speaker's goals or biases from a given scene description. I have instead considered only the propositional content of scene description utterances, in particular the issue' of whether or not a given scene description could plausibly correspond to a real scene. Until we can give an account of the Judgement of plausibility of description meanings, we cannot even say now we recognize blatant lles; from this perspective, understanding ~ someone might lle or mislead, i.e. understanding the intended effect of an utterance, is a secondary issue.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SCENE D~SCRIPTIONS AND A THEORY OF ACTION",
"sec_num": "5.2"
},
{
"text": "There seems to me to be a clear need for a \"theory of human action\", both for purposes of event simulation and, more importantly, to provide a better overall framework for AI research than we currently nave.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SCENE D~SCRIPTIONS AND A THEORY OF ACTION",
"sec_num": "5.2"
},
{
"text": "While no one to my knowledge still accepts as plausible the \"big switch\" theory of intelligent action [7], mos~ AI work seems to proceed on the \"big switch\" ass,,mptions that it is valid to study intelligent behavior in isolated domains, and that there is no compelling reason at this point to worry a~out whether (let alone how) the pieces developed in isolation will ultimately fit together.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "SCENE D~SCRIPTIONS AND A THEORY OF ACTION",
"sec_num": "5.2"
},
{
"text": "Spatial analog models are certainly not the only possible representation for scene descriptions, hut they are convenient and natural in many ways. Among their advantages are: I) computational adequacy for",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "ARE THERE MANY WAYS TO SKIN % CAT?",
"sec_num": "5.3"
}
],
"back_matter": [
{
"text": "representing the locations and motions of objects; 2) the ability to implicitly represent relationships between objects, and to allow easy derivation of these relationships; 3) ease of interaction with a vision system, and ultimately appropriateness for allowing a mobile entity to navlgate and locate objects.The main problem with these representations is that scene descriptions are usually underspeclfled, so that there is a range of possible locations for each object. It thus becomes risky to trust implicit relationships between objects. Event stereotypes are probably important because they specify compactly all the important relationships between objects.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "annex",
"sec_num": null
},
{
"text": "A number of papers related the the topics treated here have appeared in recent years. has developed a very interesting paradigm for qualitative reasoning in physics, built on work by deKleer [18, 19] , and related to work by Hayes [20, 21] . My comments on pronoun resolution are in the same spirit as Hobbs [22] , although Hobbs's \"predicate interpretation\" is quite different from my \"analog spatial models\".Ideas on the adaptation of prototypes for the representation of 3-D shape were explored in Waltz [23] . A effort toward qualitative mechanics is described in Bundy [24] . Also relevant is the work on mental imagery of Kosslyn & Shwartz [25] and Hinton [26] .I would like to acknowledge especially the helpful comments of Ken Forbus, and also the help I have received from Bill Woods, Candy Sidner, Jeff Gibbons, Rusty Bobrow, David Israel, and Brad Goodman. [16] Herskovitz, A. On the spatial uses of prepositions. In this proceedings.",
"cite_spans": [
{
"start": 191,
"end": 195,
"text": "[18,",
"ref_id": "BIBREF0"
},
{
"start": 196,
"end": 199,
"text": "19]",
"ref_id": "BIBREF1"
},
{
"start": 231,
"end": 235,
"text": "[20,",
"ref_id": "BIBREF2"
},
{
"start": 236,
"end": 239,
"text": "21]",
"ref_id": "BIBREF3"
},
{
"start": 308,
"end": 312,
"text": "[22]",
"ref_id": "BIBREF4"
},
{
"start": 507,
"end": 511,
"text": "[23]",
"ref_id": "BIBREF5"
},
{
"start": 574,
"end": 578,
"text": "[24]",
"ref_id": "BIBREF7"
},
{
"start": 646,
"end": 650,
"text": "[25]",
"ref_id": "BIBREF8"
},
{
"start": 662,
"end": 666,
"text": "[26]",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "5.~ RELATED WORK",
"sec_num": null
},
{
"text": "[[17] Forbua, K.D. A study of qualitative and geometric knowledge in reasoning about motion. MS thesis, MIT AI Lab, Cambridge, MA, Feb. 1980.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "REFERENCES",
"sec_num": "6."
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Multiple representations of knowledge in a mechanlcs problem-solver",
"authors": [
{
"first": "J",
"middle": [],
"last": "De Kleer",
"suffix": ""
}
],
"year": 1977,
"venue": "Prec. 5tb Intl. Joint ~onf. on Artificial Intelli~ence~ MIT",
"volume": "",
"issue": "",
"pages": "299--304",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "de Kleer, J. Multiple representations of knowledge in a mechanlcs problem-solver. Prec. 5tb Intl. Joint ~onf. on Artificial Intelli~ence~ MIT, Cambridge, MA, 1977, 299-304.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "The origin and resolution of ambiguities in causal arguments",
"authors": [
{
"first": "J",
"middle": [],
"last": "De Kleer",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "197--203",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "de Kleer, J. The origin and resolution of ambiguities in causal arguments. Prec. IJCAI-79, Tokyo, Japan, 1979, 197-203.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "The naive physics manifesto",
"authors": [
{
"first": "P",
"middle": [
"J"
],
"last": "Hayes",
"suffix": ""
}
],
"year": 1978,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hayes, P.J. The naive physics manifesto. Unpublished paper, May 1978.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Naive physics I: Ontology for liquids. Unpublished paper",
"authors": [
{
"first": "P",
"middle": [
"J"
],
"last": "Hayes",
"suffix": ""
}
],
"year": 1978,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hayes, P.J. Naive physics I: Ontology for liquids. Unpublished paper, Aug. 1978.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Pronoun resolution",
"authors": [
{
"first": "J",
"middle": [
"R"
],
"last": "Hobbs",
"suffix": ""
}
],
"year": 1976,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hobbs, J.R. Pronoun resolution. Research report, Dept. of Computer Sciences, City College, City University of New York, c.1976.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Relating images, concepts, and words",
"authors": [
{
"first": "D",
"middle": [
"L"
],
"last": "Waltz",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Waltz, D.L. Relating images, concepts, and words.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "of the NSF WorMshoo on the RePresentation of ~-O Oblects",
"authors": [
{
"first": "",
"middle": [],
"last": "Prec",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Prec. of the NSF WorMshoo on the RePresentation of ~-O Oblects, University of Pennsylvania, Philadelphia, 1979. Also available as Working Paper 23, Coordinated Science Lab, University of Illinois, Urbana, Feb. 1980.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Will it reach the top? Prediction in the mechanics world",
"authors": [
{
"first": "A",
"middle": [],
"last": "Bundy",
"suffix": ""
}
],
"year": 1978,
"venue": "Artificial Intelli~ence",
"volume": "10",
"issue": "2",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Bundy, A. Will it reach the top? Prediction in the mechanics world. Artificial Intelli~ence 10. 2, April 1978.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "A simulation of visual imagery",
"authors": [
{
"first": "S",
"middle": [
"H"
],
"last": "Kossly~",
"suffix": ""
},
{
"first": "S",
"middle": [
"P"
],
"last": "Shwartz",
"suffix": ""
}
],
"year": 1977,
"venue": "CQ~nitive Science I",
"volume": "3",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kossly~, S.H. & Shwartz, S.P. A simulation of visual imagery. CQ~nitive Science I, 3, July 1977.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Some demonstrations of the effects of structural descriptions in mental imagery",
"authors": [
{
"first": "G",
"middle": [],
"last": "Hinton",
"suffix": ""
}
],
"year": 1979,
"venue": "Co=nitive Science ~",
"volume": "3",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hinton, G. Some demonstrations of the effects of structural descriptions in mental imagery. Co=nitive Science ~, 3, July-Sept. 1979.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"num": null,
"text": "32..2,) My car goes 2000 miles on a tank of gas. (323) Mary caught the bullet between her teeth. ($24) The child fell from the 10th story window to the street below, but wasn't hurt. (325) We took the refrigerator home in the trunk of our VW Beetle. ($26) She ~md given birth to 25 children by the age of 30. (527) The robin picked up the hook and flew away with it. (328) The child chewed up and swallowed the pair of scissors. The Gulnness Book of World Records is full of examples that defy event simulation.",
"type_str": "figure"
},
"TABREF4": {
"content": "<table><tr><td colspan=\"3\">and be more</td><td colspan=\"2\">specific</td><td>about what an event simulation</td></tr><tr><td colspan=\"5\">should involve in this rather complex case.</td><td>The event</td></tr><tr><td colspan=\"2\">simulation</td><td colspan=\"3\">set up procedures I envision would.execute</td></tr><tr><td colspan=\"4\">the following steps:</td></tr><tr><td colspan=\"5\">I) instantiate a standard</td><td>mailman</td><td>and dachshund</td><td>in</td></tr><tr><td>default</td><td colspan=\"3\">positions</td><td>(e.g.</td><td>both standing on level ground</td></tr><tr><td colspan=\"5\">outdoors on a residential street with no special</td><td>props</td></tr><tr><td colspan=\"5\">other than the mailman's uniform and mailbag);</td></tr></table>",
"html": null,
"text": "My dachshund bit our mailman on the ear.",
"num": null,
"type_str": "table"
}
}
}
} |