| { |
| "paper_id": "D07-1011", |
| "header": { |
| "generated_with": "S2ORC 1.0.0", |
| "date_generated": "2023-01-19T16:20:03.613527Z" |
| }, |
| "title": "Incremental generation of plural descriptions: Similarity and partitioning", |
| "authors": [ |
| { |
| "first": "Albert", |
| "middle": [], |
| "last": "Gatt", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of Aberdeen", |
| "location": {} |
| }, |
| "email": "agatt@csd.abdn.ac.uk" |
| }, |
| { |
| "first": "Kees", |
| "middle": [], |
| "last": "Van Deemter", |
| "suffix": "", |
| "affiliation": { |
| "laboratory": "", |
| "institution": "University of Aberdeen", |
| "location": {} |
| }, |
| "email": "" |
| } |
| ], |
| "year": "", |
| "venue": null, |
| "identifiers": {}, |
| "abstract": "Approaches to plural reference generation emphasise descriptive brevity, but often lack empirical backing. This paper describes a corpus-based study of plural descriptions, and proposes a psycholinguisticallymotivated algorithm for plural reference generation. The descriptive strategy is based on partitioning and incorporates corpusderived heuristics. An exhaustive evaluation shows that the output closely matches human data.", |
| "pdf_parse": { |
| "paper_id": "D07-1011", |
| "_pdf_hash": "", |
| "abstract": [ |
| { |
| "text": "Approaches to plural reference generation emphasise descriptive brevity, but often lack empirical backing. This paper describes a corpus-based study of plural descriptions, and proposes a psycholinguisticallymotivated algorithm for plural reference generation. The descriptive strategy is based on partitioning and incorporates corpusderived heuristics. An exhaustive evaluation shows that the output closely matches human data.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Abstract", |
| "sec_num": null |
| } |
| ], |
| "body_text": [ |
| { |
| "text": "Generation of Referring Expressions (GRE) is a well-studied sub-task of microplanning in Natural Language Generation. Most algorithms in this area view GRE as a content determination problem, that is, their emphasis is on the construction of a semantic representation which is eventually mapped to a linguistic realisation (i.e. a noun phrase). Content Determination for GRE starts from a Knowledge Base (KB) consisting of a set of entities U and a set of properties P represented as attribute-value pairs, and searches for a description D \u2286 P which distinguishes a referent r \u2208 U from its distractors. Under this view, reference is mainly about identification of an entitiy in a given context (represented by the KB), a well-studied pragmatic function of definite noun phrases in both the psycholinguistic and the computational literature (Olson, 1970) .", |
| "cite_spans": [ |
| { |
| "start": 840, |
| "end": 853, |
| "text": "(Olson, 1970)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "For example, the KB in Table 1 represents 8 entities in a 2D visual domain, each with 6 attributes, including their location, represented as a combination of horizontal (X) and vertical (Y) numerical co- ordinates. To refer to an entity an algorithm searches through values of the different attributes. GRE has been dominated by Dale and Reiter's (1995) Incremental Algorithm (IA), one version of which, generalised to deal with non-disjunctive plural references, is shown in Algorithm 1 (van Deemter, 2002) . A non-disjunctive reference to a set R is possible just in case all the elements of R can be distinguished using the same attribute-value pairs. Such a description is equivalent to the logical conjunction of the properties in question. This algorithm, IA plur , initialises a description D and a set of distractors C [1.1-1.2], and traverses an ordered list of properties, called the preference order (PO) [1.3], which reflects general or domain-specific pref-", |
| "cite_spans": [ |
| { |
| "start": 329, |
| "end": 353, |
| "text": "Dale and Reiter's (1995)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 488, |
| "end": 507, |
| "text": "(van Deemter, 2002)", |
| "ref_id": "BIBREF21" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 23, |
| "end": 30, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Algorithm 1 IA plur (R,U,PO 1: D \u2190 \u2205 2: C \u2190 U \u2212 R 3: for A : v \u2208 PO do 4: if R \u2286 [[ A : v ]] \u2227 [[ A : v ]] \u2212 C = \u2205 then 5: D \u2190 D \u222a { A : v } 6: C \u2190 C \u2229 [[ A : v ]] 7: if [[ D ]] = R then 8:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "return D 9:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "end if 10:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "end if 11: end for 12: return D erences for attributes. For instance, with the PO in the top row of the Table, the algorithm first considers values of TYPE, then COLOUR, and so on, adding a property to D if it is true of the intended referents R, and has some contrastive value, that is, excludes some distractors [1.4] . The description and the distractor set C are updated accordingly [1.5-1.6], and the description returned if it is distinguishing [1.7] . Given R = {e 1 , e 2 }, this algorithm would return the following description:", |
| "cite_spans": [ |
| { |
| "start": 314, |
| "end": 319, |
| "text": "[1.4]", |
| "ref_id": null |
| }, |
| { |
| "start": 451, |
| "end": 456, |
| "text": "[1.7]", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "(1) ORIENTATION : back \u2227 SIZE : small This description is overspecified, because ORI-ENTATION is not strictly necessary to distinguish the referents ( SIZE : small suffices). Moreover, the description does not include TYPE, though it has been argued that this is always required, as it maps to the head noun of an NP (Dale and Reiter, 1995) . We will adopt this assumption here, for reasons explained below. Due to its hillclimbing nature, the IA avoids combinatorial search, unlike some predecessors which searched exhaustively for the briefest possible description of a referent (Dale, 1989) , based on a strict interpretation of the Gricean Maxim of Quantity (Grice, 1975) . Given that, under the view proposed by Olson (1970) among others, the function of a referential NP is to identify, a strict Gricean interpretation holds that it should contain no more information than necessary to achieve this goal.", |
| "cite_spans": [ |
| { |
| "start": 317, |
| "end": 340, |
| "text": "(Dale and Reiter, 1995)", |
| "ref_id": "BIBREF2" |
| }, |
| { |
| "start": 581, |
| "end": 593, |
| "text": "(Dale, 1989)", |
| "ref_id": "BIBREF3" |
| }, |
| { |
| "start": 662, |
| "end": 675, |
| "text": "(Grice, 1975)", |
| "ref_id": "BIBREF8" |
| }, |
| { |
| "start": 717, |
| "end": 729, |
| "text": "Olson (1970)", |
| "ref_id": "BIBREF13" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "The Incremental Algorithm constitutes a departure from this view given that it can overspecify through its use of a PO. This has been justified on psycholinguistic grounds. Speakers overspecify their descriptions because they begin their formulation of a reference without exhaustively scanning a domain (Pechmann, 1989; Belke and Meyer, 2002) . They prioritise the basic-level category (TYPE) of an object, and salient, absolute properties like COLOUR (Pechmann, 1989; Eikmeyer and Ahls\u00e8n, 1996) , as well as locative properties in the vertical dimension (Arts, 2004) . Relative attributes like SIZE are avoided unless absolutely required for identification (Belke and Meyer, 2002) . This evidence suggests that speakers conceptualise referents as gestalts (Pechmann, 1989) whose core is their basiclevel TYPE (Murphy, 2002) and some other salient attributes like COLOUR. For instance, according to Schriefers and Pechmann (1988) , an NP such as the large black triangle reflects a conceptualisation of the referent as a black triangle, of which the SIZE property is predicated. Thus, the TYPE+COLOUR combination is not mentally represented as two separable dimensions. In what follows, we will sometimes refer to this principle as the Conceptual Gestalts Principle. Note that the IA does not fully mirror these human tendencies, since it only includes preferred attributes in a description if they remove some distractors given the current state of the algorithm, whereas psycholinguistic research suggests that people include them irrespective of contrastiveness (but cf. van der Sluis and Krahmer (2005) ).", |
| "cite_spans": [ |
| { |
| "start": 304, |
| "end": 320, |
| "text": "(Pechmann, 1989;", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 321, |
| "end": 343, |
| "text": "Belke and Meyer, 2002)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 453, |
| "end": 469, |
| "text": "(Pechmann, 1989;", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 470, |
| "end": 496, |
| "text": "Eikmeyer and Ahls\u00e8n, 1996)", |
| "ref_id": "BIBREF4" |
| }, |
| { |
| "start": 556, |
| "end": 568, |
| "text": "(Arts, 2004)", |
| "ref_id": "BIBREF0" |
| }, |
| { |
| "start": 659, |
| "end": 682, |
| "text": "(Belke and Meyer, 2002)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 758, |
| "end": 774, |
| "text": "(Pechmann, 1989)", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 811, |
| "end": 825, |
| "text": "(Murphy, 2002)", |
| "ref_id": "BIBREF12" |
| }, |
| { |
| "start": 900, |
| "end": 930, |
| "text": "Schriefers and Pechmann (1988)", |
| "ref_id": "BIBREF17" |
| }, |
| { |
| "start": 1583, |
| "end": 1607, |
| "text": "Sluis and Krahmer (2005)", |
| "ref_id": "BIBREF22" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "More recent research on plural GRE has deemphasised these issues, especially in case of disjunctive plural reference. Disjunction is required whenever elements of a set of referents R do not have identical distinguishing properties. For example, {e 1 , e 3 } can be distinguished by the following Conjunctive Normal Form (CNF) description 1 :", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "(2) TYPE : desk \u2227` COLOUR : red \u2228 COLOUR : blue", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "\u00b4\u2227 ORIENTATION : right \u2228 ORIENTATION : back \u015a", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "uch a description would be returned by a generalised version of Algorithm 1 proposed by van Deemter (2002) . This generalisation, IA bool (so called because it handles all Boolean operators, such as negation and disjunction), first tries to find a nondisjunctive description using Algorithm 1. Failing this, it searches through disjunctions of properties of increasing length, conjoining them to the description. This procedure has three consequences: 1. Efficiency: Searching through disjunctive combinations results in a combinatorial explosion (van Deemter, 2002) .", |
| "cite_spans": [ |
| { |
| "start": 92, |
| "end": 106, |
| "text": "Deemter (2002)", |
| "ref_id": "BIBREF21" |
| }, |
| { |
| "start": 547, |
| "end": 566, |
| "text": "(van Deemter, 2002)", |
| "ref_id": "BIBREF21" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "2. Gestalts and content: The notion of a 'preferred attribute' is obscured, since it is difficult to apply the same reasoning that motivated the PO in the IA to combinations like (COLOUR \u2228 SIZE).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "3. Form: Descriptions can become logically very complex (Gardent, 2002; Horacek, 2004) .", |
| "cite_spans": [ |
| { |
| "start": 56, |
| "end": 71, |
| "text": "(Gardent, 2002;", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 72, |
| "end": 86, |
| "text": "Horacek, 2004)", |
| "ref_id": "BIBREF10" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Proposals to deal with (3) include Gardent's (2002) non-incremental, constraint-based algorithm to generate the briefest available description of a set, an approach extended in Gardent et al. (2004) . An alternative, by Horacek (2004) , combines bestfirst search with optimisation to reduce logical complexity. Neither approach benefits from empirical grounding, and both leave open the question of whether previous psycholinguistic research on singular reference is applicable to plurals.", |
| "cite_spans": [ |
| { |
| "start": 35, |
| "end": 51, |
| "text": "Gardent's (2002)", |
| "ref_id": "BIBREF6" |
| }, |
| { |
| "start": 177, |
| "end": 198, |
| "text": "Gardent et al. (2004)", |
| "ref_id": "BIBREF5" |
| }, |
| { |
| "start": 220, |
| "end": 234, |
| "text": "Horacek (2004)", |
| "ref_id": "BIBREF10" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "This paper reports a corpus-based analysis of plural descriptions elicited in well-defined domains, of which Table 1 is an example. This study falls within a recent trend in which empirical issues in GRE have begun to be tackled (Gupta and Stent, 2005; Jordan and Walker, 2005; Viethen and Dale, 2006) . We then propose an efficient algorithm for the generation of references to arbitrary sets, which combines corpusderived heuristics and a partitioning-based procedure, comparing this to IA bool . Unlike van Deemter (2002), we only focus on disjunction, leaving negation aside. Our starting point is the assumption that plurals, like singulars, evince preferences for certain attributes as predicted by the Conceptual Gestalts Principle. Based on previous work in Gestalt perception (Wertheimer, 1938; Rock, 1983) , we propose an extension of this to sets, whereby plural descriptions are preferred if (a) they maximise the similarity of their referents, using the same attributes to describe them as far as possible; (b) prioritise salient ('preferred') attributes which are central to the conceptual representation of an object. We address (3) above by investigating the logical form of plurals in the corpus. One determinant of logical form is the basic-level category of objects. For example, to refer to {e 1 , e 2 } in the Table, an author has at least the following options:", |
| "cite_spans": [ |
| { |
| "start": 229, |
| "end": 252, |
| "text": "(Gupta and Stent, 2005;", |
| "ref_id": "BIBREF9" |
| }, |
| { |
| "start": 253, |
| "end": 277, |
| "text": "Jordan and Walker, 2005;", |
| "ref_id": "BIBREF11" |
| }, |
| { |
| "start": 278, |
| "end": 301, |
| "text": "Viethen and Dale, 2006)", |
| "ref_id": "BIBREF23" |
| }, |
| { |
| "start": 785, |
| "end": 803, |
| "text": "(Wertheimer, 1938;", |
| "ref_id": "BIBREF24" |
| }, |
| { |
| "start": 804, |
| "end": 815, |
| "text": "Rock, 1983)", |
| "ref_id": "BIBREF15" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 109, |
| "end": 116, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 1331, |
| "end": 1337, |
| "text": "Table,", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "(3) (a) the small desk and sofa (b) the small red desk and the small blue sofa (c) the small desk and the small blue sofa (d) the small objects These descriptions exemplify three possible sources of variation:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Disjunctive/Non-disjunctive: The last description, (3d), is non-disjunctive (i.e. it is logically a conjunction of properties). This, however, is only achievable through the use of a non-basic level value for the TYPE of the entities (objects). Using the basiclevel would require the disjunction ( TYPE : desk \u2228 TYPE : sofa ), which is the case in (3a-c). Given that basic-level categories are preferred on independent grounds (Rosch et al., 1976) , we would expect examples like (3d) to be relatively infrequent.", |
| "cite_spans": [ |
| { |
| "start": 427, |
| "end": 447, |
| "text": "(Rosch et al., 1976)", |
| "ref_id": "BIBREF16" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Aggregation: If a description is disjunctive, it may be aggregated, with properties common to all objects realised as wide-scope modifiers. For instance, in (3a), small modifies desk and sofa. By contrast, (3b) is non-aggregated: small occurs twice (modifying each coordinate in the NP). Non-aggregated, disjunctive descriptions are logically equivalent to a partition of a set. For instance, (3c) partitions the set R = {e 1 , e 2 } into {{e 1 }, {e 2 }}, describing each element separately. Descriptions like (3b) are more overspecified than their aggregated counterparts due to the repetition of information.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "Paralellism/Similarity: Non-aggregated, disjunctive descriptions (partitions) may exhibit semantic parallelism: In (3b), elements of the partition are described using exactly the same attributes (that is, TYPE, COLOUR, and SIZE). This is not the case in (3c), which does represent a partition but is nonparallel. Parallel structures maximise the similarity of elements of a partition, using the same attributes to describe both. The likelihood of propagation of an attribute across disjuncts is probably dependent on its degree of salience or preference (e.g. COLOUR is expected to be more likely to be found in a parallel structure than SIZE).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Introduction", |
| "sec_num": "1" |
| }, |
| { |
| "text": "The data for our study is a subset of the TUNA Corpus (Gatt et al., 2007) , consisting of 900 references to furniture and household items, collected via a controlled experiment involving 45 participants. In addition to their TYPE, objects in the domains have COLOUR, ORIENTATION and SIZE (see Table 1 ). For each subset of these three attributes, there was an equal number of domains in which the minimally distinguishing description (MD) consisted of values of that subset. For example, Table 1 represents a domain in which the intended referents, {e 1 , e 2 }, can <DESCRIPTION num='pl'> <DESCRIPTION num='sg'> <ATTRIBUTE name='size' value='small'>small</ATTRIBUTE> <ATTRIBUTE name='colour' value='red'>red</ATTRIBUTE> <ATTRIBUTE name='type' value='desk'>desk</ATTRIBUTE> </DESCRIPTION> and <DESCRIPTION num='sg'> <ATTRIBUTE name='size' value='small'>small</ATTRIBUTE> <ATTRIBUTE name='colour' value='blue'>blue</ATTRIBUTE> <ATTRIBUTE name='type' value='sofa'>sofa</ATTRIBUTE> </DESCRIPTION> </DESCRIPTION>", |
| "cite_spans": [ |
| { |
| "start": 54, |
| "end": 73, |
| "text": "(Gatt et al., 2007)", |
| "ref_id": "BIBREF7" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 293, |
| "end": 300, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| }, |
| { |
| "start": 488, |
| "end": 495, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "( SIZE : small \u2227 COLOUR : red \u2227 TYPE : desk ) \u2228 ( SIZE : small \u2227 COLOUR : blue \u2227 TYPE : sofa )", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Figure 1: Corpus annotation examples be minimally distinguished using only SIZE 2 . Thus, overspecified usage of attributes can be identified in authors' descriptions. Domain objects were randomly placed in a 3 (row) \u00d7 5 (column) grid, represented by X and Y in Table 1 . These are relevant for a subset of descriptions which contain locative expressions.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 262, |
| "end": 269, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Corpus descriptions are paired with an explicit XML domain representation, and annotated with semantic markup which makes clear which attributes a description contains. This markup abstracts away from differences in lexicalisation, making it an ideal resource to evaluate content determination algorithms, because it is semantically transparent, in the sense of this term used by van Deemter et al. (2006) . This markup scheme also enables the compositional derivation of a logical form from a natural language description. For example, the XML representation of (3b) is shown in Figure 1 , which also displays the LF derived from it. Each constituent NP in (3b) is annotated as a set of attributes enclosed by a DESCRIPTION tag, which is marked up as singular (sg). The two coordinates are further enclosed in a plural DESCRIPTION; correspondingly, the LF is a disjunction of (the LFs of) the two internal descriptions.", |
| "cite_spans": [ |
| { |
| "start": 384, |
| "end": 405, |
| "text": "Deemter et al. (2006)", |
| "ref_id": "BIBREF20" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 580, |
| "end": 588, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Descriptions in the corpus were elicited in 7 domains with one referent, and 13 domains with 2 referents. Plural domains represented levels of a Value Similarity factor. In 7 Value-Similar (VS) domains, referents were identifiable using identical values of the minimally distinguishing attributes. In the remaining 6 Value-Dissimilar (VDS) domains, the minimally distinguishing values were different. Table 2 : % disjunctive and non-disjunctive plurals be minimally distinguished using the same value of SIZE (small).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 401, |
| "end": 408, |
| "text": "Table 2", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "In terms of our introductory discussion, referents in Value-Similar conditions could be minimally distinguished using a conjunction of properties, while Value-Dissimilar referents required a disjunction since, if two referents could be minimally distinguished by different values v and v of an attribute A, then MD had the form A : v \u2228 A : v' . However, even in the VS condition, referents had different basic-level types. Thus, an author faced with a domain like Table 1 had at least the descriptive options in (3a-d). If they chose to refer to entities using basic-level values of TYPE, their description would be disjunctive (e.g. 3a). A non-disjunctive description would require the use of a superordinate value, as in (3d).", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 464, |
| "end": 471, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Our analysis will focus on a stratified random sample of 180 plural descriptions, referred to as PL 1 , generated by taking 4 descriptions from each author (2 each from VS and VDS conditions). We also use the singular data (SG; N = 315). The remaining plural descriptions (PL 2 ; N = 405) are used for evaluation.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The data", |
| "sec_num": "2" |
| }, |
| { |
| "text": "Descriptions in PL 1 were first classified according to whether they were non-disjunctive (cf. 3d) or disjunctive (3a-c). The latter were further classified into aggregated (3a) and non-aggregated (3b). Table 2 displays the percentage of descriptions in each of the four categories, within each level of Value Similarity. Disjunctive descriptions were a majority in either condition, and most of these were nonaggregated. As noted in \u00a71, these descriptions correspond to partitions of the set of referents.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The logical form of plurals", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Since referents in VS had identical properties except for TYPE values, the most likely reason for the majority of disjunctives in VS is that people's descriptions represented a partition of a set of referents induced by the basic-level category of the ob- jects. This is strengthened by the finding that the likelihood of a description being disjunctive or nondisjunctive did not differ as a function of Value Similarity (\u03c7 2 = 2.56, p > .1). A \u03c7 2 test on overall frequencies of aggregated versus non-aggregated disjunctives showed that the non-aggregated descriptions ('true' partitions) were a significant majority (\u03c7 2 = 83.63, p < .001). However, the greater frequency of aggregation in VS compared to VDS turned out to be significant (\u03c7 2 = 15.498, p < .001). Note that the predominance of nonaggregated descriptions in VS implies that properties are repeated in two disjuncts (resp. coordinate NPs), suggesting that authors are likely to redundantly propagate properties across disjuncts. This evidence goes against some recent proposals for plural reference generation which emphasise brevity (Gardent, 2002) .", |
| "cite_spans": [ |
| { |
| "start": 1101, |
| "end": 1116, |
| "text": "(Gardent, 2002)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "The logical form of plurals", |
| "sec_num": "3" |
| }, |
| { |
| "text": "Allowing for the independent motivation for set partitioning based on TYPE values, we suggested in \u00a71 that parallel descriptions such as (3b) may be more likely than non-parallel ones (3c), since the latter does not use the same properties to describe the two referents. Similarity, however, should also interact with attribute preferences. For this part of the analysis, we focus exclusively on the disjunctive descriptions in PL 1 (N = 150) in both VS and VDS. The descriptions were categorised according to whether they had parallel or nonparallel semantic structure. Evidence for Similarity interacting with attribute preferences is strongest if it is found in those cases where an attribute is overspecified (i.e. used when not required for a distinguishing description). In those cases where corpus descriptions do not contain locative expressions (the X and/or Y attributes), such an overspecified usage is straightforwardly identified based on the MD of a domain. This is less straightforward in the case of locatives, since the position of objects was randomly determined in each domain. Therefore, we divided 3. well-specified otherwise.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conceptual gestalts and similarity", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Proportions of Parallel and Non-Parallel descriptions for each of the three classes are are shown in Table 3 . In all three description types, there is an overwhelming majority of Parallel descriptions, confirmed by a \u03c7 2 analysis. The difference in proportions of description types did not differ between VS and VDS (\u03c7 2 < 1, p > .8), suggesting that the tendency to redundantly repeat attributes, avoiding aggregation, is independent of whether elements of a set can be minimally distinguished using identical values.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 101, |
| "end": 108, |
| "text": "Table 3", |
| "ref_id": "TABREF4" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Conceptual gestalts and similarity", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Our second prediction was that the likelihood with which an attribute is used in a parallel structure is a function of its overall 'preference'. Thus, we expect attributes such as COLOUR to feature more than once (perhaps redundantly) in a parallel description to a greater extent than SIZE. To test this, we used the SG sample, estimating the overall probability of occurrence of a given attribute in a singular description (denoted p(A, SG)), and using this in a non-linear regression model to predict the likelihood of usage of an attribute in a plural partitioned description with parallel semantic structure (denoted p(A, PPS)). The data was fitted to a regression equation of the form p(A, PPS) = k \u00d7 p(A, SG) S . The resulting equation, shown in (4), had a near-perfect fit to the data (R 2 = .910) 3 . This is confirmed by comparing actual probability of occurrence in the second column of Table 4 , to the predicted probabilities in the third column, which are estimated from singular probabilities using (4). p(A, PPS) = .713 p(A, SG) . 912 (4)", |
| "cite_spans": [ |
| { |
| "start": 1047, |
| "end": 1050, |
| "text": "912", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 898, |
| "end": 905, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Conceptual gestalts and similarity", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "Note that the probabilities in the Table confirm previous psycholinguistic findings. To the extent that probability of occurrence reflects salience and/or conceptual importance, an order over the three attributes COLOUR, SIZE and ORIENTATION can be deduced (C>>O>>S), which is compatible with the findings of Pechmann (1989) , Belke and Meyer (2002) and others. The locative attributes are also ordered (Y>>X), confirming the findings of Arts (2004) that vertical location is preferred. Orderings deducible from the SG data in turn are excellent predictors of the likelihood of 'propagating' an attribute across disjuncts in a plural description, something which is likely even if an attribute is redundant, modulo the centrality or salience of the attribute in the mental gestalt corresponding to the set. Together with the earlier findings on logical form, the data evinces a dual strategy whereby (a) sets are partitioned based on basic-level conceptual category; (b) elements of the partitions are described using the same attributes if they are easily perceived and conceptualised. Thus, of the descriptions in (3) above, it is (3b) that is the norm among authors.", |
| "cite_spans": [ |
| { |
| "start": 309, |
| "end": 324, |
| "text": "Pechmann (1989)", |
| "ref_id": "BIBREF14" |
| }, |
| { |
| "start": 327, |
| "end": 349, |
| "text": "Belke and Meyer (2002)", |
| "ref_id": "BIBREF1" |
| }, |
| { |
| "start": 438, |
| "end": 449, |
| "text": "Arts (2004)", |
| "ref_id": "BIBREF0" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Conceptual gestalts and similarity", |
| "sec_num": "3.1" |
| }, |
| { |
| "text": "In this section we describe IA part , a partitioningbased content determination algorithm. Though presented as a version of the IA, the basic strategy is generalisable beyond it. For our purposes, the assumption of a preference order will be maintained. IA part is distinguished from the original IA and IA bool (cf. \u00a71) in two respects. First, it induces partitions opportunistically based on KB information, and this is is reflected in the way descriptions are represented. Second,, the criteria whereby a property is added to a description include a consideration of the overall salience or preference of an attribute, and its contribution to the conceptual cohesiveness of the description. Throughout the following discussion, we maintain a running example from Table 1 , in which R = {e 1 , e 2 , e 5 }.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 766, |
| "end": 773, |
| "text": "Table 1", |
| "ref_id": "TABREF1" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Content determination by partitioning", |
| "sec_num": "4" |
| }, |
| { |
| "text": "IA part generates a partitioned description (D part ) of a set R, corresponding to a formula in Disjunctive Normal Form. D part is a set of Description Fragments (DFs). A DF is a triple R DF , T DF , M DF , where R DF \u2286 R, T DF is a value of TYPE, and M DF is a possibly empty set of other properties. DFs refer to disjoint subsets of R. As the representation suggests, TYPE is given a special status. IA part starts by selecting the basic-level values of TYPE, partitioning R and creating a DF for each element of the partition on this basis. In our example, the selection of TYPE results in two DFs, with M DF initialised to empty:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "(5) DF1\u02d9{e1, e5}, TYPE : desk , \u2205\u1e10 F2\u02d9{e2}, TYPE : sofa , \u2205A", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "lthough neither DF is distinguishing, R DF indicates which referents a fragment is intended to identify. In this way, the algorithm incorporates a 'divideand-conquer' strategy, splitting up the referential intention into 'sub-intentions' to refer to elements of a partition. Following the initial step of selecting TYPE, the algorithm considers other properties in PO. Suppose COLOUR : blue is considered first. This property is true of e 2 and e 5 . Since DF 2 refers to e 2 , the new property can be added to M DF 2 . Since e 5 is not the sole referent of DF 1 , the property induces a further partitioning of this fragment, resulting in a new DF. This is identical to DF 1 except that it refers only to e 5 and contains COLOUR : blue . DF 1 itself now refers only to e 1 . Once COLOUR : red is considered, it is added to the latter, yielding (6). if R = \u2205 then 3: return 4:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "else if RDF \u2286 R then 5:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "MDF \u2190 MDF \u222a\u02d8 A : v 6 : R \u2190 R \u2212 RDF 7:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "else if RDF \u2229 R = \u2205 then 8:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Rnew \u2190 RDF \u2229 R 9:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "DFnew \u2190\u02d9Rnew, TDF, MDF \u222a { A : v }1 0:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Dpart \u2190 Dpart \u222a\u02d8DFnew1 1:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "RDF \u2190 RDF \u2212 Rnew 12: R \u2190 R \u2212 Rnew 13:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "end if 14: end for 15: if A = TYPE then 16:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "Dpart \u2190 Dpart \u222a\u02d8\u02d9R , A : v , \u2205\u00b81 7: else 18: Dpart \u2190 Dpart \u222a\u02d8 R , \u22a5, { A : v } 1 9: end if", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "the DFs in D part , adding the property to any DF such that R DF \u2229R = \u2205, until R is empty and all referents in it have been accounted for [2.2] . As indicated in the informal discussion, there are two cases to consider for each DF: Two special cases arise when D part is empty, or there are some elements of R for which no DF exists. Both cases result in the construction of a new DF. An example of the former case is the initial state of the algorithm, when TYPE is added. As in example (5), the TYPE results in a new DF [2.16] . If a property is not a TYPE, the new DF has T set to null (\u22a5) and the property is included in M [2.18] 4 . Note that this procedure easily generalises to the singular case, where D part would only contain one DF.", |
| "cite_spans": [ |
| { |
| "start": 138, |
| "end": 143, |
| "text": "[2.2]", |
| "ref_id": null |
| }, |
| { |
| "start": 522, |
| "end": 528, |
| "text": "[2.16]", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "1. R DF \u2286 R [2.4].", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Partitioned descriptions", |
| "sec_num": "4.1" |
| }, |
| { |
| "text": "IA part 's content determination strategy maximises the similarity of a set by generating semantically parallel structures. Though contrastiveness plays a role in property selection, the 'preference' or conceptual salience of an attribute is also considered in the decision to propagate it across DFs.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "Candidate properties for addition need only be true of at least one element of R. Because of the partitioning strategy, properties are not equally constrastive for all referents. For instance, in (5), e 2 needs to be distinguished from the other sofas in Table 1, while {e 1 , e 5 } need to be distinguished from the desks. Therefore, distractors are held in an associative array C, such that for all r \u2208 R, C[r] is the set of distractors for that referent at a given stage in the procedure. Contrastiveness is defined via the following Boolean function:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "contrastive( A : v , R) \u2194 \u2203r \u2208 R : C[r] \u2212 [[ A : v ]] = \u2205 (7)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "We turn next to salience and similarity. Let A(D part ) be the set of attributes included in D part . A property is salient with respect to D part if it satisfies the following:", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "salient( A : v , D part ) \u2194 A \u2208 A(D part ) \u2227 (.713 p(A, SG) .912 > 0.5) (8)", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "that is, the attribute is already included in the description, and the predicted probability of its being propagated in more than one fragment of a description is greater than chance. A potential problem arises here. Consider the description in (5) once more. At this stage, IA part begins to consider COLOUR. The value red is true of e 1 , but noncontrastive (all the desks which are not in R are red). If this is the first value of COLOUR considered, (8) returns false because the attribute has not been used in any part of the description. On later considering COLOUR : blue , the algorithm adds it to D part , since it is contrastive for {e 2 , e 5 }, but will have failed to propagate COLOUR across fragments. As a result, IA part considers values of an attribute in order of discriminatory power (Dale, 1989) , defined in the present context as follows:", |
| "cite_spans": [ |
| { |
| "start": 802, |
| "end": 814, |
| "text": "(Dale, 1989)", |
| "ref_id": "BIBREF3" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "EQUATION", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [ |
| { |
| "start": 0, |
| "end": 8, |
| "text": "EQUATION", |
| "ref_id": "EQREF", |
| "raw_str": "|[[ A : v ]] \u2229 R| + |[[ A : v ]] \u2212 (U \u2212 R)| |[[ A : v ]]|", |
| "eq_num": "(9)" |
| } |
| ], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "Discriminatory power depends on the number of referents a property includes in its extension, and the number of distractors (U \u2212R) it removes. By prioritising discriminatory values, the algorithm first considers and adds COLOUR : blue , and subsequently will include red because (8) returns true.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "To continue with the example, at the stage represented by (6), only e 5 has been distinguished. ORI-ENTATION, the next attribute considered, is not contrastive for any referent. On considering SIZE, small is found to be contrastive for e 1 and e 2 , and added to DF 1 and DF 2 . However, SIZE is not added to DF 3 , in spite of being present in two other fragments. This is because the probability function p(SIZE, PPS) returns a value below 0.5 (see Table 4 , reflecting the relatively low conceptual salience of this attribute. The final description is the blue desk, the small red desk and the small blue sofa. This example illustrates the limits set on semantic parallelism and similarity: only attributes which are salient enough are redundantly propagated across DFs.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 451, |
| "end": 458, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Property selection criteria", |
| "sec_num": "4.2" |
| }, |
| { |
| "text": "An estimate of the complexity of IA part must account for the way properties are selected ( \u00a74.2) and the way descriptions are updated (Algorithm 2).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Complexity", |
| "sec_num": "4.3" |
| }, |
| { |
| "text": "Property selection involves checking properties for contrastive value and salience, and updating the ordering of values of each attribute based on discriminatory power (9). Clearly, the number of times this is carried out is bounded by the number of properties in the KB, which we denote n p . Every time a property is selected, the discriminatory power of values changes (since the number of remaining distractors changes). Now, in the worst case, all n p properties are selected by the algorithm 5 . Each time, the algorithm must compare the remaining properties 5 Only unique properties need to be considered, as each property is selected at most once, though it can be included in more than one DF. ) . With respect to the procedure updateDescription, we need to consider the number of iterations in the f or loop starting at line [2.1] . This is bounded by n r = |R| (there can be no more DFs than there are referents). Once again, if at most n p properties are selected, then the algorithm makes at most n r iterations n p times, yielding complexity O(n p n r ). Overall, then, IA part has a worst-case runtime complexity O(n 3 p n r ).", |
| "cite_spans": [ |
| { |
| "start": 565, |
| "end": 566, |
| "text": "5", |
| "ref_id": null |
| }, |
| { |
| "start": 835, |
| "end": 840, |
| "text": "[2.1]", |
| "ref_id": null |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 703, |
| "end": 704, |
| "text": ")", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Complexity", |
| "sec_num": "4.3" |
| }, |
| { |
| "text": "IA part was compared to van Deemter's IA bool ( \u00a71) against human output in the evaluation sub-corpus PL 2 (N = 405). This was considered an adequate comparison, since IA bool shares with the current framework a genetic relationship with the IA.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Other approaches, such as Gardent's (2002) brevityoriented algorithm, would perform poorly on our data. As shown in \u00a73, overspecification is extremely common in plural descriptions, suggesting that such a strategy is on the wrong track (but see \u00a76).", |
| "cite_spans": [ |
| { |
| "start": 26, |
| "end": 42, |
| "text": "Gardent's (2002)", |
| "ref_id": "BIBREF6" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "IA part and IA bool were each run over the domain representation paired with each corpus description. The output logical form was compared to the LF compiled from the XML representation of an author's description (cf. Figure 1 ). LFs were represented as and-or trees, and compared using the tree edit distance algorithm of Shasha and Zhang (1990) . On this measure, a value of 0 indicates identity.", |
| "cite_spans": [ |
| { |
| "start": 323, |
| "end": 346, |
| "text": "Shasha and Zhang (1990)", |
| "ref_id": "BIBREF18" |
| } |
| ], |
| "ref_spans": [ |
| { |
| "start": 218, |
| "end": 226, |
| "text": "Figure 1", |
| "ref_id": null |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Because only a subset of descriptions contain locative expressions, PL 2 was divided into a +LOC dataset (N = 148) and a \u2212LOC dataset (N = 257). The preference orders for both algorithms were (C>>O>>S) for \u2212LOC and (Y>>C>>X>>S>>O) for +LOC. These are suggested by the attribute probabilities in Table 4 . Table 5 displays the mean Edit score obtained by each algorithm on the two datasets, the modal (most frequent) value, and the perfect recall percentage (PRP), the proportion of Edit scores of 0, indicating perfect agreement with an author.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 295, |
| "end": 302, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "As the means and modes indicate, IA part outperformed IA bool on both datasets, with a consistently higher PRP (this coincides with the modal score in the case of \u2212LOC). Pairwise t\u2212tests showed that the trends were significant in both +LOC (t(147) = 9.28, p < .001) and \u2212LOC (t(256) = 10.039, p < .001).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "IA bool has a higher (worse) mean on \u2212LOC, but a better PRP than on +LOC. This apparent discrepancy is partly due to variance in the edit distance scores. For instance, because the Y attribute was highest in the preference order for +LOC, there were occasions when both referents could be identified using the same value of Y, which was therefore included by IA bool at first pass, before considering disjunctions. Since Y was highly preferred by authors (see Table 4 ), there was higher agreement on these cases, compared to those where the values of Y were different for the two referents. In the latter case, Y was only when disjunctions were considered, if at all. The worse performance of IA part on +LOC is due to a larger choice of attributes, also resulting in greater variance, and occasionally incurring higher Edit cost when the algorithm overspecified more than a human author. This is a potential shortcoming of the partitioning strategy outlined here, when it is applied to more complex domains.", |
| "cite_spans": [], |
| "ref_spans": [ |
| { |
| "start": 460, |
| "end": 468, |
| "text": "Table 4", |
| "ref_id": "TABREF6" |
| } |
| ], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "Some example outputs are given below, in a domain where COLOUR sufficed to distinguish the referents, which had different values of this attribute (i.e. an instance of the VDS condition). The formula returned by IA part (10a) is identical to the (LF of) the human-authored description (with Edit score of 0). The output of IA bool is shown in (10b).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "(10) (a)`fan \u2227 green\u00b4\u2228`sofa \u2227 blue' the green fan and the big sofa' (b)`sofa \u2228 fan\u00b4\u2227 small \u2227 front \u2227`blue \u2228 green' the small, blue and green sofa and fan'", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "As a result of IA bool 's requiring a property or disjunction to be true of the the entire set of referents, COLOUR is not included until disjunctions are considered, while values of SIZE and ORIENTATION are included at first pass. By contrast, IA part includes COLOUR before any other attribute apart from TYPE. Though overspecification is common in our data, IA bool overspecifies with the 'wrong' attributes (those which are relatively dispreferred). The rationale in IA part is to overspecify only if a property will enhance referent similarity, and is sufficiently salient. As for logical form, the Conjunctive Normal Form output of IA bool increases the Edit score, given the larger number of logical operators in (10b) compared to (10a).", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Evaluation", |
| "sec_num": "5" |
| }, |
| { |
| "text": "This paper presented a study of plural reference, showing that people (a) partition sets based on the basic level TYPE or category of their elements and (b) redundantly propagate attributes across disjuncts in a description, modulo their salience. Our algorithm partitions a set opportunistically, and incorporates a corpus-derived heuristic to estimate the salience of a property. Evaluation results showed that these principles are on the right track, with significantly better performance over a previous model (van Deemter, 2002) . The partitioning strategy is related to a proposal by van Deemter and Krahmer (2007) , which performs exhaustive search for a partition of a set whose elements can be described non-disjunctively. Unlike the present approach, this algorithm is non-incremental and computationally costly.", |
| "cite_spans": [ |
| { |
| "start": 514, |
| "end": 533, |
| "text": "(van Deemter, 2002)", |
| "ref_id": "BIBREF21" |
| }, |
| { |
| "start": 606, |
| "end": 620, |
| "text": "Krahmer (2007)", |
| "ref_id": "BIBREF19" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Summary and conclusions", |
| "sec_num": "6" |
| }, |
| { |
| "text": "IA part initially performs partitioning based on the basic-level TYPE of objects, in line with the evidence. However, later partitions can be induced by other properties, possible yielding partitions even with same-TYPE referents (e.g. the blue chair and the red chair). Aggregation (the blue and red chairs) may be desirable in such cases, but limits on syntactic complexity of NPs are bound to play a role (Horacek, 2004) . Another possible limitation of IA part is that, despite strong evidence for overspecification, complex domains could yield very lengthy outputs. Strategies to avoid them include the utilisation of other boolean operators like negation (the desks which are not red) (Horacek, 2004) . These issues are open to future empirical research.", |
| "cite_spans": [ |
| { |
| "start": 408, |
| "end": 423, |
| "text": "(Horacek, 2004)", |
| "ref_id": "BIBREF10" |
| }, |
| { |
| "start": 691, |
| "end": 706, |
| "text": "(Horacek, 2004)", |
| "ref_id": "BIBREF10" |
| } |
| ], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Summary and conclusions", |
| "sec_num": "6" |
| }, |
| { |
| "text": "Note that logical disjunction is usually rendered as linguistic coordination using and. Thus, the table and the desk is the union of things which are desks or tables.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "A similar analysis using linear regression gave essentially the same results.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| }, |
| { |
| "text": "This only occurs if the KB is incomplete, that is, there some entities have no TYPE, so that R is not fully covered by the intended referents of the DFs when TYPE is initially added.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "", |
| "sec_num": null |
| } |
| ], |
| "back_matter": [ |
| { |
| "text": "Thanks to Ehud Reiter and Ielka van der Sluis for useful comments. This work forms part of the TUNA project (www.csd.abdn.ac.uk/research/tuna/), supported by EPSRC grant GR/S13330/01.", |
| "cite_spans": [], |
| "ref_spans": [], |
| "eq_spans": [], |
| "section": "Acknowledgements", |
| "sec_num": "7" |
| } |
| ], |
| "bib_entries": { |
| "BIBREF0": { |
| "ref_id": "b0", |
| "title": "Overspecification in Instructive Texts", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Arts", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Arts. 2004. Overspecification in Instructive Texts. Ph.D. thesis, Univiersity of Tilburg.", |
| "links": null |
| }, |
| "BIBREF1": { |
| "ref_id": "b1", |
| "title": "Tracking the time course of multidimensional stimulus discrimination: Analysis of viewing patterns and processing times during same-different decisions", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Belke", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Meyer", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "European Journal of Cognitive Psychology", |
| "volume": "14", |
| "issue": "2", |
| "pages": "237--266", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "E. Belke and A. Meyer. 2002. Tracking the time course of multidimensional stimulus discrimination: Analy- sis of viewing patterns and processing times during same-different decisions. European Journal of Cog- nitive Psychology, 14(2):237-266.", |
| "links": null |
| }, |
| "BIBREF2": { |
| "ref_id": "b2", |
| "title": "Computational interpretation of the Gricean maxims in the generation of referring expressions", |
| "authors": [ |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Dale", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Reiter", |
| "suffix": "" |
| } |
| ], |
| "year": 1995, |
| "venue": "Cognitive Science", |
| "volume": "19", |
| "issue": "8", |
| "pages": "233--263", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "R. Dale and E. Reiter. 1995. Computational interpreta- tion of the Gricean maxims in the generation of refer- ring expressions. Cognitive Science, 19(8):233-263.", |
| "links": null |
| }, |
| "BIBREF3": { |
| "ref_id": "b3", |
| "title": "Cooking up referring expressions", |
| "authors": [ |
| { |
| "first": "Robert", |
| "middle": [], |
| "last": "Dale", |
| "suffix": "" |
| } |
| ], |
| "year": 1989, |
| "venue": "Proceedings of the 27th Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Robert Dale. 1989. Cooking up referring expressions. In Proceedings of the 27th Annual Meeting of the Associ- ation for Computational Linguistics, ACL-89.", |
| "links": null |
| }, |
| "BIBREF4": { |
| "ref_id": "b4", |
| "title": "The cognitive process of referring to an object: A comparative study of german and swedish", |
| "authors": [ |
| { |
| "first": "H", |
| "middle": [ |
| "J" |
| ], |
| "last": "Eikmeyer", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Ahls\u00e8n", |
| "suffix": "" |
| } |
| ], |
| "year": 1996, |
| "venue": "Proceedings of the 16th Scandinavian Conference on Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "H. J. Eikmeyer and E. Ahls\u00e8n. 1996. The cognitive pro- cess of referring to an object: A comparative study of german and swedish. In Proceedings of the 16th Scan- dinavian Conference on Linguistics.", |
| "links": null |
| }, |
| "BIBREF5": { |
| "ref_id": "b5", |
| "title": "Generating definite descriptions: Nonincrementality, inference, and data", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Gardent", |
| "suffix": "" |
| }, |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Manu\u00e9lian", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Striegnitz", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Amoia", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Multidisciplinary Approaches to Language Production", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. Gardent, H. Manu\u00e9lian, K. Striegnitz, and M. Amoia. 2004. Generating definite descriptions: Non- incrementality, inference, and data. In T. Pechman and C. Habel, editors, Multidisciplinary Approaches to Language Production. Mouton de Gruyter.", |
| "links": null |
| }, |
| "BIBREF6": { |
| "ref_id": "b6", |
| "title": "Generating minimal definite descriptions", |
| "authors": [ |
| { |
| "first": "C", |
| "middle": [], |
| "last": "Gardent", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "C. Gardent. 2002. Generating minimal definite descrip- tions. In Proceedings of the 40th Annual Meeting of the Association for Computational Linguistics, ACL- 02.", |
| "links": null |
| }, |
| "BIBREF7": { |
| "ref_id": "b7", |
| "title": "Evaluating algorithms for the generation of referring expressions using a balanced corpus", |
| "authors": [ |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Gatt", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Van Der Sluis", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Van Deemter", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Proceedings of the 11th European Workshop on Natural Language Generation", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "A. Gatt, I. van der Sluis, and K. van Deemter. 2007. Evaluating algorithms for the generation of referring expressions using a balanced corpus. In Proceedings of the 11th European Workshop on Natural Language Generation, ENLG-07. To appear.", |
| "links": null |
| }, |
| "BIBREF8": { |
| "ref_id": "b8", |
| "title": "Logic and conversation", |
| "authors": [ |
| { |
| "first": "H", |
| "middle": [ |
| "P" |
| ], |
| "last": "Grice", |
| "suffix": "" |
| } |
| ], |
| "year": 1975, |
| "venue": "Syntax and Semantics: Speech Acts., volume III", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "H.P. Grice. 1975. Logic and conversation. In P. Cole and J.L. Morgan, editors, Syntax and Semantics: Speech Acts., volume III. Academic Press.", |
| "links": null |
| }, |
| "BIBREF9": { |
| "ref_id": "b9", |
| "title": "Automatic evaluation of referring expression generation using corpora", |
| "authors": [ |
| { |
| "first": "S", |
| "middle": [], |
| "last": "Gupta", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [ |
| "J" |
| ], |
| "last": "Stent", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of the 1st Workshop on Using Corpora in NLG", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "S. Gupta and A. J. Stent. 2005. Automatic evaluation of referring expression generation using corpora. In Proceedings of the 1st Workshop on Using Corpora in NLG, Birmingham, UK.", |
| "links": null |
| }, |
| "BIBREF10": { |
| "ref_id": "b10", |
| "title": "On referring to sets of objects naturally", |
| "authors": [ |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Horacek", |
| "suffix": "" |
| } |
| ], |
| "year": 2004, |
| "venue": "Proceedings of the 3rd International Conference on Natural Language Generation", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "H. Horacek. 2004. On referring to sets of objects natu- rally. In Proceedings of the 3rd International Confer- ence on Natural Language Generation, INLG-04.", |
| "links": null |
| }, |
| "BIBREF11": { |
| "ref_id": "b11", |
| "title": "Learning content selection rules for generating object descriptions in dialogue", |
| "authors": [ |
| { |
| "first": "P", |
| "middle": [ |
| "W" |
| ], |
| "last": "Jordan", |
| "suffix": "" |
| }, |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Walker", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Journal of Artificial Intelligence Research", |
| "volume": "24", |
| "issue": "", |
| "pages": "157--194", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "P. W. Jordan and M. Walker. 2005. Learning content se- lection rules for generating object descriptions in di- alogue. Journal of Artificial Intelligence Research, 24:157-194.", |
| "links": null |
| }, |
| "BIBREF12": { |
| "ref_id": "b12", |
| "title": "The big book of concepts", |
| "authors": [ |
| { |
| "first": "G", |
| "middle": [ |
| "L" |
| ], |
| "last": "Murphy", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "G. L. Murphy. 2002. The big book of concepts. MIT Press, Cambridge, Ma.", |
| "links": null |
| }, |
| "BIBREF13": { |
| "ref_id": "b13", |
| "title": "Language and thought: Aspects of a cognitive theory of semantics", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [ |
| "R" |
| ], |
| "last": "Olson", |
| "suffix": "" |
| } |
| ], |
| "year": 1970, |
| "venue": "Psychological Review", |
| "volume": "77", |
| "issue": "", |
| "pages": "257--273", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. R. Olson. 1970. Language and thought: Aspects of a cognitive theory of semantics. Psychological Review, 77:257-273.", |
| "links": null |
| }, |
| "BIBREF14": { |
| "ref_id": "b14", |
| "title": "Incremental speech production and referential overspecification", |
| "authors": [ |
| { |
| "first": "Thomas", |
| "middle": [], |
| "last": "Pechmann", |
| "suffix": "" |
| } |
| ], |
| "year": 1989, |
| "venue": "Linguistics", |
| "volume": "27", |
| "issue": "", |
| "pages": "89--110", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "Thomas Pechmann. 1989. Incremental speech pro- duction and referential overspecification. Linguistics, 27:89-110.", |
| "links": null |
| }, |
| "BIBREF15": { |
| "ref_id": "b15", |
| "title": "The Logic of Perception", |
| "authors": [ |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Rock", |
| "suffix": "" |
| } |
| ], |
| "year": 1983, |
| "venue": "", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "I. Rock. 1983. The Logic of Perception. MIT Press, Cambridge, Ma.", |
| "links": null |
| }, |
| "BIBREF16": { |
| "ref_id": "b16", |
| "title": "Basic objects in natural categories", |
| "authors": [ |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Rosch", |
| "suffix": "" |
| }, |
| { |
| "first": "C", |
| "middle": [ |
| "B" |
| ], |
| "last": "Mervis", |
| "suffix": "" |
| }, |
| { |
| "first": "W", |
| "middle": [], |
| "last": "Gray", |
| "suffix": "" |
| }, |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Johnson", |
| "suffix": "" |
| }, |
| { |
| "first": "P", |
| "middle": [], |
| "last": "Boyes-Braem", |
| "suffix": "" |
| } |
| ], |
| "year": 1976, |
| "venue": "Cognitive Psychology", |
| "volume": "8", |
| "issue": "", |
| "pages": "382--439", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "E. Rosch, C. B. Mervis, W. Gray, D. Johnson, and P. Boyes-Braem. 1976. Basic objects in natural cat- egories. Cognitive Psychology, 8:382-439.", |
| "links": null |
| }, |
| "BIBREF17": { |
| "ref_id": "b17", |
| "title": "Incremental production of referential noun phrases by human speakers", |
| "authors": [ |
| { |
| "first": "H", |
| "middle": [], |
| "last": "Schriefers", |
| "suffix": "" |
| }, |
| { |
| "first": "T", |
| "middle": [], |
| "last": "Pechmann", |
| "suffix": "" |
| } |
| ], |
| "year": 1988, |
| "venue": "Advances in Natural Language Generation", |
| "volume": "1", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "H. Schriefers and T. Pechmann. 1988. Incremental pro- duction of referential noun phrases by human speak- ers. In M. Zock and G. Sabah, editors, Advances in Natural Language Generation, volume 1. Pinter, Lon- don.", |
| "links": null |
| }, |
| "BIBREF18": { |
| "ref_id": "b18", |
| "title": "Fast algorithms for unit cost editing distance between trees", |
| "authors": [ |
| { |
| "first": "D", |
| "middle": [], |
| "last": "Shasha", |
| "suffix": "" |
| }, |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Zhang", |
| "suffix": "" |
| } |
| ], |
| "year": 1990, |
| "venue": "Journal of Algorithms", |
| "volume": "11", |
| "issue": "", |
| "pages": "581--621", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "D. Shasha and K. Zhang. 1990. Fast algorithms for unit cost editing distance between trees. Journal of Algo- rithms, 11:581-621.", |
| "links": null |
| }, |
| "BIBREF19": { |
| "ref_id": "b19", |
| "title": "Graphs and booleans: On the generation of referring expressions", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Van Deemter", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Krahmer", |
| "suffix": "" |
| } |
| ], |
| "year": 2007, |
| "venue": "Computing Meaning", |
| "volume": "III", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. van Deemter and E. Krahmer. 2007. Graphs and booleans: On the generation of referring expressions. In H. Bunt and R. Muskens, editors, Computing Mean- ing, volume III. Springer, Berlin.", |
| "links": null |
| }, |
| "BIBREF20": { |
| "ref_id": "b20", |
| "title": "Building a semantically transparent corpus for the generation of referring expressions", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Van Deemter", |
| "suffix": "" |
| }, |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Van Der Sluis", |
| "suffix": "" |
| }, |
| { |
| "first": "A", |
| "middle": [], |
| "last": "Gatt", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the 4th International Conference on Natural Language Generation (Special Session on Data Sharing and Evaluation)", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. van Deemter, I. van der Sluis, and A. Gatt. 2006. Building a semantically transparent corpus for the generation of referring expressions. In Proceedings of the 4th International Conference on Natural Lan- guage Generation (Special Session on Data Sharing and Evaluation), INLG-06.", |
| "links": null |
| }, |
| "BIBREF21": { |
| "ref_id": "b21", |
| "title": "Generating referring expressions: Boolean extensions of the incremental algorithm", |
| "authors": [ |
| { |
| "first": "K", |
| "middle": [], |
| "last": "Van Deemter", |
| "suffix": "" |
| } |
| ], |
| "year": 2002, |
| "venue": "Computational Linguistics", |
| "volume": "28", |
| "issue": "1", |
| "pages": "37--52", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "K. van Deemter. 2002. Generating referring expres- sions: Boolean extensions of the incremental algo- rithm. Computational Linguistics, 28(1):37-52.", |
| "links": null |
| }, |
| "BIBREF22": { |
| "ref_id": "b22", |
| "title": "Towards the generation of overspecified multimodal referring expressions", |
| "authors": [ |
| { |
| "first": "I", |
| "middle": [], |
| "last": "Van Der Sluis", |
| "suffix": "" |
| }, |
| { |
| "first": "E", |
| "middle": [], |
| "last": "Krahmer", |
| "suffix": "" |
| } |
| ], |
| "year": 2005, |
| "venue": "Proceedings of the Symposium on Dialogue Modelling and Generation, 15th Annual Meeting of the Society for Text and Discourse", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "I. van der Sluis and E. Krahmer. 2005. Towards the gen- eration of overspecified multimodal referring expres- sions. In Proceedings of the Symposium on Dialogue Modelling and Generation, 15th Annual Meeting of the Society for Text and Discourse, STD-05.", |
| "links": null |
| }, |
| "BIBREF23": { |
| "ref_id": "b23", |
| "title": "Algorithms for generating referring expressions: Do they do what people do?", |
| "authors": [ |
| { |
| "first": "J", |
| "middle": [], |
| "last": "Viethen", |
| "suffix": "" |
| }, |
| { |
| "first": "R", |
| "middle": [], |
| "last": "Dale", |
| "suffix": "" |
| } |
| ], |
| "year": 2006, |
| "venue": "Proceedings of the 4th International Conference on Natural Language Generation", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "J. Viethen and R. Dale. 2006. Algorithms for generat- ing referring expressions: Do they do what people do? In Proceedings of the 4th International Conference on Natural Language Generation, INLG-06.", |
| "links": null |
| }, |
| "BIBREF24": { |
| "ref_id": "b24", |
| "title": "Laws of organization in perceptual forms", |
| "authors": [ |
| { |
| "first": "M", |
| "middle": [], |
| "last": "Wertheimer", |
| "suffix": "" |
| } |
| ], |
| "year": 1938, |
| "venue": "A Source Book of Gestalt Psychology. Routledge & Kegan Paul", |
| "volume": "", |
| "issue": "", |
| "pages": "", |
| "other_ids": {}, |
| "num": null, |
| "urls": [], |
| "raw_text": "M. Wertheimer. 1938. Laws of organization in per- ceptual forms. In W. Ellis, editor, A Source Book of Gestalt Psychology. Routledge & Kegan Paul, London.", |
| "links": null |
| } |
| }, |
| "ref_entries": { |
| "FIGREF0": { |
| "num": null, |
| "type_str": "figure", |
| "uris": null, |
| "text": "DF1\u02d9{e1}, TYPE : desk , { COLOUR : red }\u1e10 F2\u02d9{e2}, TYPE : sofa , { COLOUR : blue }\u1e10 F3\u02d9{e5}, TYPE : desk , { COLOUR : blue }\u0162 he procedure updateDescription, which creates and updates DFs, is formalised in Algorithm 2. When some property A : v is found to be 'useful' in relation to R (in a sense to be made precise), this function is called with two arguments: A : v itself, and R = [[ A : v ]] \u2229 R, the referents of which A : v is true. The procedure iterates through Algorithm 2 updateDescription( A : v , R ) 1: for RDF, TDF, MDF \u2208 Dpart do 2:" |
| }, |
| "TABREF1": { |
| "type_str": "table", |
| "content": "<table/>", |
| "num": null, |
| "html": null, |
| "text": "" |
| }, |
| "TABREF2": { |
| "type_str": "table", |
| "content": "<table><tr><td/><td>VS</td><td/><td>VDS</td><td/></tr><tr><td/><td colspan=\"4\">+Disj \u2212Disj +Disj \u2212Disj</td></tr><tr><td>+aggr</td><td>20.2</td><td>15.5</td><td>2.4</td><td>3.7</td></tr><tr><td>\u2212aggr</td><td>64.3</td><td>-</td><td>93.9</td><td>-</td></tr><tr><td>% overall</td><td>84.5</td><td>15.5</td><td>96.3</td><td>3.7</td></tr></table>", |
| "num": null, |
| "html": null, |
| "text": "represents a VS domain, where {e 1 , e 2 } can 2 TYPE was not included in the calculation of MD." |
| }, |
| "TABREF4": { |
| "type_str": "table", |
| "content": "<table/>", |
| "num": null, |
| "html": null, |
| "text": "Parallelism: % per description type" |
| }, |
| "TABREF5": { |
| "type_str": "table", |
| "content": "<table><tr><td/><td>Actual</td><td/><td>Predicted</td></tr><tr><td/><td>p(A, .680</td><td>.835</td><td>.61</td></tr><tr><td>SIZE</td><td>.290</td><td>.359</td><td>.28</td></tr><tr><td>ORIENTATION</td><td>.280</td><td>.269</td><td>.26</td></tr><tr><td>X-DIMENSION</td><td>.440</td><td>.517</td><td>.52</td></tr><tr><td>Y-DIMENSION</td><td>.630</td><td>.647</td><td>.65</td></tr></table>", |
| "num": null, |
| "html": null, |
| "text": "SG) p(A, PPS) p(A, PPS) COLOUR" |
| }, |
| "TABREF6": { |
| "type_str": "table", |
| "content": "<table><tr><td>descriptions into three classes, whereby a descrip-</td></tr><tr><td>tion is considered to be:</td></tr><tr><td>1. underspecified if it does not include a locative</td></tr><tr><td>expression and omits some MD attributes;</td></tr><tr><td>2. overspecified if either (a) it does not omit any</td></tr><tr><td>MD attributes, but includes locatives and/or</td></tr><tr><td>non-required visual attributes; or (b) it omits</td></tr><tr><td>some MD attributes, but includes both a locative</td></tr><tr><td>expression and other, non-required attributes;</td></tr></table>", |
| "num": null, |
| "html": null, |
| "text": "Actual and predicted usage probabilities" |
| }, |
| "TABREF7": { |
| "type_str": "table", |
| "content": "<table/>", |
| "num": null, |
| "html": null, |
| "text": "This corresponds to our example involving COLOUR : blue and DF 2 . The property is simply added to M DF [2.5] and R is updated by removing the elements thus accounted for [2.6]. 2. Suppose R DF \u2286 R . If R DF \u2229 R is empty, then A : v is not useful. Suppose on the other hand that R DF \u2229 R = \u2205 [2.7]. This occurred with COLOUR : red in relation to DF 1 . The procedure initialises R new , a set holding those referents in R DF which are also in R [2.8]. A new DF (DF new ) is created, which is a copy of the old DF, except that (a) it contains the new property; and (b) its intended referents are R new [2.9]. The new DF is included in the description [2.10], while the old DF is altered by removing R new from R DF [2.11]. This ensures that DFs denote disjoint subsets of R." |
| }, |
| "TABREF9": { |
| "type_str": "table", |
| "content": "<table><tr><td>: Edit distance scores</td></tr><tr><td>pairwise for discriminatory power, a quadratic op-</td></tr><tr><td>eration with complexity O(n 2 p</td></tr></table>", |
| "num": null, |
| "html": null, |
| "text": "" |
| } |
| } |
| } |
| } |