File size: 59,592 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 | {
"paper_id": "C80-1012",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T13:05:22.705408Z"
},
"title": "FUZZY WORD MEANING ANALYSIS AND REPRESENTATION IN LINGUISTIC SEMANTICS. AN EMPIRICAL APPROACH TO THE RECONSTRUCTION OF LEXICAL MEANINGS IN EAST-AND WEST-GERMAN NEWSPAPER TEXTS",
"authors": [
{
"first": "Burghard",
"middle": [
"B"
],
"last": "Rieger",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Technical University of Aachen",
"location": {
"country": "Germany"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Word semantics is gaining increasing interest within linguistics in view of both, more adequate representational structures of the semantic system and methods and procedures to analyse it empirically. Due to the fact formal and operational means have been devised to describe and represent word connotation and/or denotation, this paper discusses some of the empirical problems connected with natural languages' varying and vague meanings, how these can be analysed statistically from discourse data, and represented formally as fuzzy system of vocabulary mappings. Some examples computed from East-and West-German newspaper texts will be given at the end to illustrate the approaches feasibility.",
"pdf_parse": {
"paper_id": "C80-1012",
"_pdf_hash": "",
"abstract": [
{
"text": "Word semantics is gaining increasing interest within linguistics in view of both, more adequate representational structures of the semantic system and methods and procedures to analyse it empirically. Due to the fact formal and operational means have been devised to describe and represent word connotation and/or denotation, this paper discusses some of the empirical problems connected with natural languages' varying and vague meanings, how these can be analysed statistically from discourse data, and represented formally as fuzzy system of vocabulary mappings. Some examples computed from East-and West-German newspaper texts will be given at the end to illustrate the approaches feasibility.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "When we look up linguistic theories of sentence-or even of text-semantics to see what they can offer in respect to word-meaning, we will be confronted with basically two types FILLMORE /3/ has referred to as checklist-semantics and prototype-semantics. According to this distinction, checklist-semantics provides listings of meaning components, semantic markers, or semantic descriptors which must be satisfied for a term to be (grammatically, truth-functionally, or else) interpretable within a linguistic expression; whereas prototype-semantics allows for the (pa~g-ma~l, Syn{~agmatical, or else) identification of a term as part of a linguistic expression within a network structure of labeled nodes and relations. Examining how these listings and networks are assembled, i.e. questioning from which sources and by what procedures the data necessary for their composition were acquired, we will invariably come accross the individual analysts', or group of analysts' own assumedly comprehensive and reliable knowledge of the world and/or the natural language system concerned. In the majority of cases, these will not have been made accessible by intersubjectively defined operations but rather by way of intuitive introspection. In doing so, linguists tend to make use of word-meaning instead of analysing it when they set up matrices for componential analysis or define semantic networks. Apart from tentative departures within generative semantics or statistical indexing, there have no operational procedures yet been devised for the semantic analysis and description of natural language terms as a result of which -when applied to natural language discourse -a lexical structure may be obtained. Now, this is what word-semantics should and could do, and where exactly the problems begin.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "I. Introduction",
"sec_num": null
},
{
"text": "If we agree that linguistics is, or at least ought to be, an empirical discipline, then the paradigm of empirical sciences should be followed, although it needs modification in view of the scope of natural language semantics.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Epistomology",
"sec_num": "2."
},
{
"text": "To adopt the paradigm of empirical sciences for linguistic research is tantamount to at least two postulates: a) not to rely on ready-made theories or models taken from another domain, because these may be inadequate in respect to the phenomena under investigation; and b) not to rely on the introspective exploration of one's own knowledge and competence as the allegedly inexhaustible datasource although valuable initial ideas might be produced that way. Instead, the investigation of linguistic problems in general, and that of word -semantics in particular, should start with hypotheses formulated for continuous estimation and/or testing against observable data, then proceed to incorporate the findings tentatively in some preliminary theoretical set up which finally may perhaps get formalized to become part of an encompassing theory.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Epistomology",
"sec_num": "2."
},
{
"text": "Within such a set up, the formal expressions which give an abstract representation of the From the increasing amount of strong empirical evidence piling, up in favour of some re-adjustment, a (meta-theoretical) modification appears to be overdue. Accordingly, it may be argued that -contrary to the experimentally and simulatively well established (object-theoretical) fuzziness of cognitive categorizing and its linguistic correspondences -any formal re, presentation of it using only binary systems' notations will inevitably result in inadequately sharp-edged lattices. When imposed upon the varying and vague structures constituted and modified continuously during the process of verbal communication observed to be modelled, this will render formal representations of discrete entities with clear-cut boundaries where blurred margins and continuous transitions would be adequate.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Epistomology",
"sec_num": "2."
},
{
"text": "The modifications suggested so far may be summarized to concern both, the observable manifestation and/or formal representation of discourse, allowing gradual rather than abrupt transitions to account for imprecise phenomena in a precise way. This can be achieved, as I see it, formally by means of fuzzy set theoretical notations /24/, and operationally by means of empirical procedures assigned to them /19/. Applied to natural language data, they will interrelate observable but essentially fuzzy language phenomena on the one hand, and formal but finally categorial notations of their linguistic descriptions on the other.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Epistomology",
"sec_num": "2."
},
{
"text": "Thus, findings and/or hypotheses on either side may become testable against each other, allowing for mutual modifications in the course of gradual improvement and increasing adequacy of the model and what it represents.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Epistomology",
"sec_num": "2."
},
{
"text": "What makes the analysis of natural language meaning so intricate a problem depends on the particular nature of what has to be represented as its results, namely, a representational structure in its own. It is this representational aspect of language which theories of semantics and cognition have been, and still are focussed on in particular.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Structure of Meaning",
"sec_num": "3."
},
{
"text": "According to the more traditional theories, natural language meaning can be characterized by its denotative and connotative aspects. Denotation is understood to constitute referential meaning as a system of relations between words or sentences of a language and the objects or processes they refer to. Connotation is defined to constitute structural meanings as a system by which words or sentences of a language are conceptually re&ated to one another. Referential semantic theory is truth-functional and formally elaborated but as such not prepared to account satisfactorily for the vagueness of natural language meaning; whereas structural semantics has considered vagueness somewhat fundamental of language but, being based mainly upon intuitive introspection, it has not achieved the theoretical or methodological consistency of formal theories.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Structure of Meaning",
"sec_num": "3."
},
{
"text": "In the course of recent, more procedural approaches to cognition and language comprehension, the former distinction of referential and structural meaning was embedded in what became to be known as frame semantics /17/. The central notion of it is that of memory which serve as a paradigm for the operational aspects of both, world system structures and language system structures. The basic distinction of what may propositionally be formulated as opposed to what may only prototypically be realized in some system structure of stored experiences, is reflected in the great variety of notional pairings which different disciplines have produced facing a similar, if not identical research problem. Thus, their notions of formal vs. experient\u00a3al knowledge /2/, semantic vs. episodic memory /21/, frame vs. scene /3/, description vs. schema /I/, etc. show a striking resemblance: although their approaches differ in what they consider natural language meaning to be, they nontheless converge on the central notion of it, being a relation between a representation (i.e. the body of discourse) and that which it represents (i.e. a referentially and/or prototypically defined system structure).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Structure of Meaning",
"sec_num": "3."
},
{
"text": "It is this throughout relational structure of meaning that obviously allowed the concept of fuzzy sets and relations to be employed to incorporate vagueness into formal theories of semantics.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A formal approach",
"sec_num": "4."
},
{
"text": "The most recent, and at that most comprehensive approach (at least I know of) to tackle the problem of natural language meaning, is that of L.A. Zadeh /24/. Under the acronym PRUF for 'Possibilistic, Relational, Universal, Fuzzy' he has devised a meaning repre-sentation language for natural languages which is possibilistic instead of truthfunctional, and whose dictionary provides linguistically labelled fuzzy subsets of the universe, instead of sets of semantic markers under word-headings.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A formal approach",
"sec_num": "4."
},
{
"text": "The basic idea, upon which this approach hinges, is that a referential meaning may be explicated as a fuzzy correspondence between language terms and a universe of discourse. This correspondence, L, is formally defined to be a fuzzy binary relation from a set of language terms, T, to a universe of discourse, U. As a fuzzy relation, L is characterized by a membership-function",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "A formal approach",
"sec_num": "4."
},
{
"text": ": \u2022 ..,((Xn,Z') , ~L(Xn,Z'))>",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "The definitions given in fuzzy sets theory for equality, containment, complement, intersection , and union allow for an application both, to referential meanings M(x) as subsets of elements in U and to linguistic descriptions D(z) as subsets of units in T. This corresponds to the distinction between scenic, or conceptual relations on the one hand, and frame, or semantic relations on the other -the latter of which only will be introduced here.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "Thus, synonymy of two terms x,x'~ T may be given as the equality of the two fuzzy subsets M(x) and M(x') repre-senting the referential meaning in U X : X' iff ~L(Z,X)= ~L(Z,X') for all z",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "Partial synonymy may be defined by a similarity formula introducing some threshold-value s",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "x~ x' iffl~L(Z,X) -~L(Z,X') & s for all z",
"eq_num": "(6)"
}
],
"section": "~L",
"sec_num": null
},
{
"text": "Hyponymy of a term x relative to x' may be explicated as containment of the meaning representing fuzzy sets concerned",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "x~x' iff~L(z,x) ~(z,x') for all z",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "In so far as the operations of complement, intersection and union are concerned which correspond to negation, conjunction and adjunction respectively, there has been some critical discussion lately, particularly on the grounds of experimental results. These suggest that different definitions of operations should be maintained according to and comparable with the sceneframe-distinction aluded to above. For the generation of new meanings which denote possible but not yet labeled elements (or sets of elements) in U, it can well be argued that the following definitions should operate on both, referential meanings M(x) and linguistic descriptions D(z) the former of which only are given here. Although formally satisfactory -as outlined and illustrated by PRUF -the approach's basic assumption concerning the referential nature of natural meaning proves to be crucial for its empirical applicability:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "in order to determine the membership-grades of a fuzzy set, or fuzzy relation respectively, one has to have access to relevant empirical data defined to constitute the sets, and some operational means to calculate the numerical values from these data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "As the domain of the fuzzy relation ~ contain not only the set of terms iL of a language, T, but also the set of objects and/or processes these terms are believed to denote in the universe, U, both these sets should be accessible in order to let an empirical procedure be devised that could be assigned to ;~T.\" All that Zadeh /24/ is offering in That respect, stays empirically rather vague. He assumes that \"each of the symbols or names in T may be defined ostensively or by exemplification.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "That is by pointing or otherwise focussing on a real or abstract object in U and indicating the degree -on the scale from 0 to I -to which it is compatible with the symbol in question\".",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "This cannot be considered a solution which may be called both adequate and operational in the above sense. Taken to be executable, Zadeh's suggestion necessarily involves probands' questioning about what they think or believe a term denotes. Thus, the procedure would again have to rely on the individual introspection of a multitude of competent speakers, instead of making these speakers employ the term's denotational and/or connotational function in the course of communicative verbal interaction. However, experimental psychology has taught us to expect considerate differences between what people think they would do under certain presupposed conditions, and what in fact they will do when these conditions are real. And there is every reason to assume that this difference is found in cases of language performance, too.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "So, it would appear more appropriate to make natural language use the basis for identifying those language regularities, which under certain communication frame conditions real speakers/ hearers follow and/or establish in discourse. These will consequently allow natural language meaning (whatever that may be) not only to be intended and understood, but also to be analysed and represented. As this apparently is the only certainty about meaning anyway, namely that it can only be constituted by means of natural language texts, these should also be able to provide the necessary data with the advantage of being empirically accessible. Assembled in a pragmatically homogeneous corpus, the usage regularities which the lexical items produce, may thus be analysed statistically with the numerical values obtained to define fuzzy vocabulary mappings /16/.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "~L",
"sec_num": null
},
{
"text": "Following this line of argument is to ask for a connotational supplement to the denotational approach Zadeh forwarded so far. This goes along with a necessary re-interpretation of what the sets T and U (I) in the referential meaning relation possibly stand for.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "From a structural point-of-view, T is not just a set of terms of a language any more, but a system of lexical units the usage regularities of which induce a relational structure of its own. So, this structure does not just allow for a set of objects and/or processes in U to be denoted, but it constitutes them as a system of concept-points, which is dependent on, but not identical with the one induced by the usage regularities of terms as employed and identified in natural language discourse /17/.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "Thus, being a non-symmetric, fuzzy, binary relation, ~ can empirically be reconstructed only on the basis of natural language discourse data. So far, statistical procedures have been used for the reconstruction by a consecutive mapping in three stages from T to U, providing the membership-grades f\u00b0ro~nLthe\" first stage co-occurrences of terms are not just counted but the intensities of co-occurring terms in the texts of the database are calculated. This is done by a modified correlationcoefficient ~ that measures mutual (positive) affinity or (negative) repugnancy of pairs of terms x,x'~T by real numbers from the interval [-I, +I]. can therefore be considered a fuzzy relation in the Cartesian-product of the set of terms T used in the texts analysed Each concept-point z'~ U may thus be considered a formal notation of all the differences of all usage regularities, as a function of which the meaning of a term x'~ T can be characterized. Therefore it can be identifiedaccording to (13) -with (4) , i.e. the l iniguistic d@iScrliptlion , D (z') , of a concept-point z' which is a fuzzy subset in T ~1(xi,z') := D(z') C T",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "On the third stage of the consecutive mapping, there will topological environments of concept-points be calculated -in analogy to (14) -by a distance measure ~9 which specifies the distances between ~ny two z,z'~ U. Thus again, ~92 may also be interpreted as a fuzzy, binary relation in the set of all concept-points z defined to constitute the semanticlspace U ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "The conditioning of ~^ on the z results in a non-fuzzy ~apping i ~ ~02[z i : U-->I n (19) which assigns to each z~U (and -following (16) -x~T respectively) one and only one n-tupel of distances that scaled according to decreasing valueswill constitute the environment E(z) $2(zi,x) = $2(zi,z):= E(z)",
"cite_spans": [
{
"start": 85,
"end": 89,
"text": "(19)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "Any such environment E(z') can be considered a formal means to describe the position of a concept point z' by its adjacent neighbours in the semantic space which is constituted by functions of differences of language usage regularities. E(z') can therefore be identified -following (16) and 20-with (3) the conceptual meaning, M(x'), of a term x' which is a fuzzy subset in U ~2(zi,x') := M(x') c U",
"cite_spans": [
{
"start": 282,
"end": 286,
"text": "(16)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "We are now in the position to assign to the fuzzy relation",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": ": T x",
"eq_num": "(22)"
}
],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "and the two-sided correspondence 3) and (4) induced by it, the following operations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "The two distance measures ~ (14) and ~9 (18), operating an numerical\" data obtained from the correlational analysis (11) of lexical items employed in a corpus of natural language texts, will determine the membership-grades to be associated with (22) , namely for the correspondence (4) induced by tL according to (15) (3o)",
"cite_spans": [
{
"start": 28,
"end": 32,
"text": "(14)",
"ref_id": "BIBREF13"
},
{
"start": 245,
"end": 249,
"text": "(22)",
"ref_id": "BIBREF22"
},
{
"start": 313,
"end": 317,
"text": "(15)",
"ref_id": "BIBREF15"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "As these distance measures satisfying the conditions are to be considered the metric of the corpus space C and the semantic space U respectively, it should be noted here that so far the assumption of it being Euclidean (30) is nothing but a fist (although operational) guess. Experiments with different distance measures one of which is (29) are currently undertaken. Eventually, these might prove to be more adequate one day in modelling word-semantic systems'structures. , and the resulting concept point's Linguistic Description D(zlz = x.~x') .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "An empirical reconstruct!on",
"sec_num": "5."
},
{
"text": "West-German language comparison. So far, two samples from corpora consisting of texts from the East-German newspaper 'Neues Deutschland' and the West-German newspaper 'Die Welt' have been analysed according to the procedures outlined. Although the samples analysed are rather small -approximately 3000 running words (tokens) of roughly 300 lemmatized words (types)the results look quite promising to the native speaker of German. In mapping the connotational difference which some morphologically identical German lexical entries have developed almost simultaneously after twenty years of usage in a derided country's rather strictly separated population, the pilot-study's results seem to indicate that -linguistically -an additional analysis of comparable text-corpora of earlier and/or later years could provide the diachronic complement to the so far synchr0nic investigation into the lexical structures concerned, allowing for the empirical reconstruction not only of their instantaneous wordmeanings, but of their time-dependent procdural changes that Nowakowska /13/ aims at. Being induced by varying language usages, these can operationally be analysed as regularities followed and/or established by language users to differing degrees, which hence may formally be represented as functions that constitute dynamic systems to model semiotic structures.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "CONCEPTUAL MEANING M(X) DIE WELT",
"sec_num": null
},
{
"text": "In the above Tables I and 2 the linguistic depcription D(z) of a concept point z is given as well as the conceptual meg ning M(x) of a vocabulary term x from both of the newspaper corpora further details of which may be found in /18/.",
"cite_spans": [],
"ref_spans": [
{
"start": 13,
"end": 27,
"text": "Tables I and 2",
"ref_id": "TABREF3"
}
],
"eq_spans": [],
"section": "CONCEPTUAL MEANING M(X) DIE WELT",
"sec_num": null
}
],
"back_matter": [
{
"text": "This paper an earlier version of which was presented under the title \"Fuzzy Representation Systems in Linguistic Semantics\" at the 8th European Meeting on Cybernetics and Systems Research (EMCSR/8) in Vienna, Austria, in April 1980, is in some parts identical with /19/. It takes up the model construction resulting from a project in Empirical Semantics supported by the Northrhine-Westphalia Ministry of Science and Research, applied to the language data provided by the German Research Foundation's project on East-West-German language comparison. I would like to thank Dr. H.M. Dannhauer for providing his programming abilities to process these language data so efficiently at the Technical University of Aachen Computing Centre.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgement",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Some Principles of Memory Schemata",
"authors": [
{
"first": "I",
"middle": [],
"last": "Bobrow",
"suffix": ""
},
{
"first": "D",
"middle": [
"G"
],
"last": "Norman",
"suffix": ""
},
{
"first": "D",
"middle": [
"A"
],
"last": "",
"suffix": ""
}
],
"year": 1975,
"venue": "",
"volume": "",
"issue": "",
"pages": "31--49",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "I . BOBROW,D .G ./NORMAN,D .A. : \"Some Princi- ples of Memory Schemata\" in: Bobrow/ Collins (Eds): Representation and Un- derstanding ,New York 1975 ,I 31 -I 49",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Language and Memory",
"authors": [
{
"first": "W",
"middle": [
"L"
],
"last": "Chafe",
"suffix": ""
}
],
"year": 1973,
"venue": "Language",
"volume": "49",
"issue": "",
"pages": "261--281",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "CHAFE, W.L.:\"Language and Memory\", Language 49(1973), 261-281",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Scenes-and-frames semantics",
"authors": [
{
"first": "C",
"middle": [
"J"
],
"last": "Fillmore",
"suffix": ""
}
],
"year": 1977,
"venue": "Linguistic Structures Processing",
"volume": "",
"issue": "",
"pages": "55--81",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "FILLMORE, C.J.:\"Scenes-and-frames se- mantics\" in: Zampolli, A. (Ed) : Lin- guistic Structures Processing, Am- sterdam 1977, 55-81",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "System Identification, Approximation, and Complexity",
"authors": [
{
"first": "B",
"middle": [
"R"
],
"last": "Gaines",
"suffix": ""
}
],
"year": 1977,
"venue": "",
"volume": "3",
"issue": "",
"pages": "145--174",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "GAINES, B.R. :\"System Identification, Approximation, and Complexity\", In- tern.Journ.General Systems 3 (1977) , 145-174",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Exploring Personal Semantic Space",
"authors": [
{
"first": "B",
"middle": [
"R"
],
"last": "Gaines",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Shaw",
"suffix": ""
},
{
"first": "L",
"middle": [
"G"
],
"last": "",
"suffix": ""
}
],
"year": 1981,
"venue": "Empirical Semantics. A Collection of New Approaches in the Field",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "GAINES, B.R./SHAW, M,L.G.:\"Exploring Personal Semantic Space\" in: Rieger, B. (Ed) : Empirical Semantics. A Col- lection of New Approaches in the Field, Bochum 1981 (forthcoming)",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "The Representation of }\u00a2eaning in Memory",
"authors": [
{
"first": "W",
"middle": [],
"last": "Kintsch",
"suffix": ""
}
],
"year": 1974,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "KINTSCH, W: The Representation of }\u00a2eaning in Memory, Hillsdale,N.J,1974",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Einige wesentliche Eigenschaften nat~rlicher Sprache und ihre Bedeutung fur die linguistische Theorie",
"authors": [
{
"first": "W",
"middle": [],
"last": "Klein",
"suffix": ""
}
],
"year": 1976,
"venue": "Zeitschr f Literaturwissen-, \u2022 \u2022 schaft und Linguistik (LiLi)",
"volume": "23",
"issue": "",
"pages": "11--31",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "KLEIN, W:\"Einige wesentliche Eigen- schaften nat~rlicher Sprache und ihre Bedeutung fur die linguistische The- orie\" Zeitschr f Literaturwissen- , \u2022 \u2022 schaft und Linguistik (LiLi) , 23/24 (1976) , 11.-31",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "The Study of Language in its Social Context",
"authors": [
{
"first": "W",
"middle": [],
"last": "Labov",
"suffix": ""
}
],
"year": 1970,
"venue": "",
"volume": "23",
"issue": "",
"pages": "30--87",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "LABOV, W.:\"The Study of Language in its Social Context\", Studium Generale 23 (1970) , 30-87",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "New Ways of Analysing Variation in English",
"authors": [
{
"first": "W",
"middle": [],
"last": "Labov",
"suffix": ""
}
],
"year": 1973,
"venue": "",
"volume": "",
"issue": "",
"pages": "340--373",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "LABOV, W.:\"The Boundaries of Wordsand their Meanings\" in: Bailey/Shuy (Eds) : New Ways of Analysing Variation in English, Washington,D .C . 1973,340-373",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Being precise about lexical vagueness",
"authors": [
{
"first": "G",
"middle": [
"N"
],
"last": "Leech",
"suffix": ""
}
],
"year": 1976,
"venue": "York Papers in Lingguistics",
"volume": "6",
"issue": "",
"pages": "149--165",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "LEECH, G.N.:\"Being precise about lex- ical vagueness\", York Papers in Ling- guistics 6(1976) , 149-165",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Zeitschrift f. Literaturwiss.u.Linguistik (LiLi)",
"authors": [
{
"first": "W",
"middle": [
"J M"
],
"last": "Levelt",
"suffix": ""
}
],
"year": 1976,
"venue": "",
"volume": "23",
"issue": "",
"pages": "131--174",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "LEVELT, W.J.M./et al.:\"Struktur und Gebrauch yon Bewegungsverben\", Zeit- schrift f. Literaturwiss.u.Linguistik (LiLi) ,23/24(1976) , 131-174",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Language and Perception",
"authors": [
{
"first": "G",
"middle": [
"A"
],
"last": "Miller",
"suffix": ""
},
{
"first": "P",
"middle": [
"N"
],
"last": "Johnson-Laird",
"suffix": ""
}
],
"year": 1976,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "MILLER, G.A./JOHNSON-LAIRD, P.N.: Language and Perception, Cambridge, U.K. 1976",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Semlotic Systems, Knowledge Representation, and Memory",
"authors": [
{
"first": "M",
"middle": [],
"last": "Nowakowska",
"suffix": ""
}
],
"year": 1981,
"venue": "Empirical Semantics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "NOWAKOWSKA, M.: Semlotic Systems, Knowledge Representation, and Memory\" in: Rieger, B.(Ed) : Empirical Seman- tics, Bochum 1981 (forthcoming)",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Eine tolerante Lexikonstruktur. Zur Abbildung natOrlichsprachlicher Bedeutung auf unscharfe Mengen in Toleranzriumen",
"authors": [
{
"first": "B",
"middle": [],
"last": "Rieger",
"suffix": ""
}
],
"year": null,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "RIEGER, B.:\"Eine tolerante Lexikon- struktur. Zur Abbildung natOrlich- sprachlicher Bedeutung auf unscharfe Mengen in Toleranzriumen\", Zeitschr.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Bedeutungskonstitution: Bemerkungen zur semiotischen Problematik eines linguistischen Problems\" t Zeitschr. f. Literaturwiss. u. Linguistik (LiLi)",
"authors": [
{
"first": "B",
"middle": [],
"last": "Rieger",
"suffix": ""
}
],
"year": 1977,
"venue": "",
"volume": "",
"issue": "",
"pages": "55--68",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "RIEGER, B.:\"Bedeutungskonstitution: Bemerkungen zur semiotischen Proble- matik eines linguistischen Problems\" t Zeitschr. f. Literaturwiss. u. Lingu- istik (LiLi) , 27/28(1977) , 55-68",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Repr~sentativit~t:von der Unangemessenheit eines Begriffs zur Kennzeichnung eines Problems linguistischer Korpusbildung",
"authors": [
{
"first": "B",
"middle": [],
"last": "Rieger",
"suffix": ""
}
],
"year": 1979,
"venue": "",
"volume": "",
"issue": "",
"pages": "52--70",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "RIEGER, B.:\"Repr~sentativit~t:von der Unangemessenheit eines Begriffs zur Kennzeichnung eines Problems lingu- istischer Korpusbildung\" in: Ber- genholtz/Schaeder(Eds) : Textcorpora. Materialien fHr eine empirische Textwissenschaft, Kron erg, Ts.1979, 52-70",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Revolution, counter-revolution, or a new empirical approach to frame reconstruction instead?",
"authors": [
{
"first": "B",
"middle": [],
"last": "Rieger",
"suffix": ""
}
],
"year": 1979,
"venue": "Text vs. Sentence. Basic Questiona of Text Linguistics",
"volume": "",
"issue": "",
"pages": "555--571",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "RIEGER, B.:\"Revolution, counter-re- volution, or a new empirical ap- proach to frame reconstruction in- stead?\" in: PetSfi, J.S.(Ed) : Text vs. Sentence. Basic Questiona of Text Linguistics, Hamburg 1979, 555- 571",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Ein statistisches Verfahren zur lexikalisch-semantischen Beschreibung des in Texten verwendeten Vokabulars im Rahmen eines Strukturmodells unscharfer (fuzzy) Wortbedeutungen",
"authors": [
{
"first": "B",
"middle": [],
"last": "Rieger",
"suffix": ""
}
],
"year": 1980,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "RIEGER, B:\"Ein statistisches Ver- fahren zur lexikalisch-semantischen Beschreibung des in Texten verwen- deten Vokabulars im Rahmen eines Strukturmodells unscharfer (fuzzy) Wortbedeutungen\" in: Hellmann, M.W. (Ed) : Ost-West-Wortschatzvergleich, DUsseldorf 1980 (forthcoming)",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "On some problems of how to handle word meaning empirically",
"authors": [
{
"first": "B",
"middle": [],
"last": "Rieger",
"suffix": ""
}
],
"year": 1980,
"venue": "New Approaches in Word Semantics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "RIEGER, B.:\"Feasible Fuzzy Seman- tics. On some problems of how to handle word meaning empirically\" in: Eikmeyer/Rieser (Eds) : New Approach- es in Word Semantics, Berlin/New York 1980 (forthcoming)",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Family resemblances: Studies in the internal structure of categories",
"authors": [
{
"first": "E",
"middle": [],
"last": "Rosch",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Mervis",
"suffix": ""
}
],
"year": 1975,
"venue": "Cognitive Psychology",
"volume": "7",
"issue": "",
"pages": "573--605",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "ROSCH, E./MERVIS, C.:\"Family resem- blances: Studies in the internal structure of categories\", Cognitive Psychology 7 (1975) , 573-605",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Semantic and episodic memory",
"authors": [
{
"first": "E",
"middle": [],
"last": "Tulving",
"suffix": ""
}
],
"year": null,
"venue": "Organisation of Memory",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "TULVING, E.:\"Semantic and episodic memory\" in: Tulving/Donaldson (Eds): Organisation of Memory, New York'72",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Die Representation yon vagem Wissen in natHrlichsprachlichen Systemen der kHnstlichen Intelligenz",
"authors": [
{
"first": "W",
"middle": [],
"last": "Wahlster",
"suffix": ""
}
],
"year": 1977,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "WAHLSTER, W.:Die Representation yon vagem Wissen in natHrlichsprachli- chen Systemen der kHnstlichen In- telligenz, University of Hamburg 1977, Ill-Report HH-B-38/77",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "A fuzzy-algorithmic approach to the definition of complex or imprecise concepts",
"authors": [
{
"first": "L",
"middle": [
"A"
],
"last": "Zadeh",
"suffix": ""
}
],
"year": 1976,
"venue": "Intern. Journ.Man-Machine Studies",
"volume": "8",
"issue": "",
"pages": "249--291",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "ZADEH, L.A.:\"A fuzzy-algorithmic approach to the definition of com- plex or imprecise concepts\", Intern. Journ.Man-Machine Studies 8(1976) , 249-291",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "PRUF -a meaning representation language for natural languages. An up-dated version",
"authors": [
{
"first": "L",
"middle": [
"A"
],
"last": "Zadeh",
"suffix": ""
}
],
"year": 1981,
"venue": "Empirical Semantics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "ZADEH, L.A.:\"PRUF -a meaning re- presentation language for natural languages. An up-dated version\" in: Rieger, B. (Ed) : Empirical Semantics, Bochum 1981 (forthcoming) .",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"text": "T x U -~ ~,I] ; x ~ T, z ~ U; O :~L(X,Z) ~ I (I) which associates with each ordered pair (x,z) its grade of membership ~L(X,Z) , being a numeric value between u ano I, in L, so that L ,: {((x,z), CL(x,z))} <2) The fuzzy relation L now induces a bilateral correspondence according to which a) the referencial meg ning of an element x' i~ T may be explicated as the fuzzy subset M(x') in U, assigned to it by the membership function ~L conditioned on x', M(x'):=,~L(Z,X'):= <((x',z 1),~n(x,zl)), .... ((X',Zn) , ~L(X',Zn)) > (3) b) the linguistic description of an element z' in U may be given as a fuzzy subset D(z') in T assigned to it by the membership function ~L conditioned on z' D(z'):=~(x,z'):: <((Xl,Z'),~L(Xl,Z'),",
"type_str": "figure",
"uris": null
},
"FIGREF1": {
"num": null,
"text": "(Z,X] ,~L(Z,X') ] for all z(10)",
"type_str": "figure",
"uris": null
},
"FIGREF2": {
"num": null,
"text": "to each x~T one and only one so-called corpus-point y defined by the n-tupel of membership-grades~(xi,x) in the corpus space C ~(xi,x) := y~C (13) Each corpus-point y'~ C may thus be considered a formal notation of the usage regularities, measured by grades of intensity, any one term x' shows against all the other terms x.~/ T. On the second s.tage the di{ferences of usage are calculated. This is done by a distance measure ~ , which yields real, non-negative, numeri\u00a3al values from an i interval standardized to [0,1] to denote the distances between any two corpuspoints y,y'~ C. ~I can also be considered a fuzzy, binary relation in the set of all corpus-points y. defined to constitute the corpus space l C ~I : C x C --~ I; I := [O,1]; C :: [yi} , i = I ..... n (I 4)By conditioning this fuzzy relation ~. on the Yi (or -following (13) -the ~ x. respectively) we get a non-fuzzy i mapping $11xi : C--tin; U := I n(15) This mapping assigns to each y~C (or x6T respectively) one and only one socalled meaning-or concept-point z defined by the n-tupe! of distance-values in the semantic space U, ~I (Yi 'x) : ~I (Yi 'y) :: zeU(16)",
"type_str": "figure",
"uris": null
},
"FIGREF3": {
"num": null,
"text": "~2 : U x U--~ I ; I := [O,1]; U ::{Zi}; i:I .... ,n",
"type_str": "figure",
"uris": null
},
"FIGREF4": {
"num": null,
"text": "and for its inversion the correspondence (3) according to(19) inserting%Izi (This concludes the empirical reconstruction, leaving open only the coefficients alluded to above.Given the lemmatized vocabulary V as a proper subset of T of lexical unitsV :={xi~ ; i=1,...,n employed in a corpus K of natural language texts as specified above K :=~t} ; t=1,...,sum S of all text-lengths s t measured by the number of lexical units (tokens) in the corpus, and m H = ~ ht! I t ~ h t ~ H t=1 (26) is the total frequency H of a lexical unit x (type) computed over all texts in the corpus, then the modified correlation-coefficient ~x to be inserted into (11) reads m ~_(h t-ht*)'(h [-ht~)",
"type_str": "figure",
"uris": null
},
"TABREF3": {
"text": "Conjunction of the Conceptual Meanings of SKI and of ABFAHRT/EN, M(xAx')",
"html": null,
"num": null,
"type_str": "table",
"content": "<table/>"
}
}
}
} |