Lab 8 (Due 3/1)

Preliminaries

These instructions might get edited a bit over the next couple of days. I'll try to flag changes. This lab is **new** for 2009, meaning this is territory that has not been covered by previous Ling 567s.

As usual, check the write up instructions first.

Requirements for this assignment


Run a baseline test suite

Before making any changes to your grammar for this lab, run a baseline test suite instance. If you decide to add items to your test suite for the material covered here, consider doing so before modifying your grammar so that your baseline can include those examples. (Alternatively, if you add examples in the course of working on your grammar and want to make the snapshot later, you can do so using the grammar you turned in for Lab 6.)


Background

The goal of this lab is to extend the grammars to cover sentences where the main (semantic) predicate is not a verb, i.e., NP, PP, and AP predicates. In some languages (including English) such predicates require the "support" of a particular bleached verb (the copula, or perhaps a verb of location). In others, they can serve as predicates on their own. In still other languages, we find a mix: The copula (or other verb) is required for certain types of predicates or in certain tenses but not others. Or the copula (or other verb) is optional: possible but not required.

It's also possible that in some languages the copula is optional in matrix clauses but required in embedded clauses. I haven't found an example like this yet, but I'd be curious to know about it if you find one.


Adpositions

Updated 2/23/09

Some of your grammars have adpositions already, but few, if any, have semantically contentful adpositions. You'll need to define these for this lab. The matrix provides a type basic-int-mod-adposition-lex, which should have most of the information required. Define a subtype with appropriate constraints on the MOD and VAL values, and try it out to see what else you might need to add.


Copula (AP or PP predicates)

We analyze copulas as semantically empty auxiliaries. You may already have a type very similar to this. The copula is likely to have different requirements on its complement than other auxiliary verbs, so you'll probably need to create subtypes, or for each. The tdl for a copula should look something like this:

copula-verb-lex := verb-lex & trans-first-arg-raising-lex-item-2 &
  [ SYNSEM.LOCAL [ CAT.VAL [ SUBJ < #subj >,
                             COMPS < #comps >,
                             SPR < >,
                             SPEC < > ],
                   CONT.HOOK.XARG #xarg ],
    ARG-ST < #subj &
             [ LOCAL [ CONT.HOOK.INDEX #xarg,
                       CAT [ VAL [ SPR < >,
                                   COMPS < > ],
                             HEAD noun ] ] ],
             #comps &
             [ LOCAL.CAT [ VAL [ COMPS < > ],
                           HEAD +jp ] ] > ].

The constraint [HEAD +jp] on the complement specifies that the complement should be (headed by) an adjective or an adposition. Depending on where copulas are required in your language, you might want to change this. If you need to give adjectives or adpositions non-empty SUBJ lists (e.g., because they can be stand-alone predicates in some cases; see below), then you'll also want to constrain the COMPS's SUBJ to be < [ ] > (aka cons) to make sure that the subject isn't realized twice.

Note that the copula verb uses the XARG to do the linking (the relevant constraint is declared on the supertype trans-first-arg-raising-lex-item in matrix.tdl). This means that the adjectives and adpositions will need to link their ARG1 to their XARG. This may already be the case, but you should double check.


Copula (NP predicates)

We will follow the ERG in positing a different copula for use with NP predicates. This is because we don't want to give every noun a semantic argument position for a potential subject. The copula verb for NP predicates will instead introduce an elementary predication linking its subject and complement.

This means that in many languages, this copula might just be an ordinary transitive verb. It's not in English, because it also has auxiliary properties. If the NP-predicate-supporting-copula in your language differs in its behavior from (other) transitive verbs, post to GoPost.

The PRED value for this verb should be "_be_v_id_rel".


Locative verbs

In some languages, PP predicates appear with a locative verb that is not quite semantically bleached, but means something like "be-located". In this case, it seems at least arguably incorrect to have the verb not introduce any predicate of its own. Instead, it will be an example of trans-first-arg-raising-lex-item-1:
locative-verb-lex := verb-lex & trans-first-arg-raising-lex-item-1 &
  [ SYNSEM.LOCAL [ CAT.VAL [ SUBJ < #subj >,
                             COMPS < #comps >,
                             SPR < >,
                             SPEC < > ],
                   CONT.HOOK.XARG #xarg ],
    ARG-ST < #subj &
             [ LOCAL [ CONT.HOOK.INDEX #xarg,
                       CAT [ VAL [ SPR < >,
                                   COMPS < > ],
                             HEAD noun ] ] ],
             #comps &
             [ LOCAL.CAT [ VAL [ COMPS < > ],
                           HEAD adp ] ] > ].

Note that there are many share constraints between this and copula-verb-lex. If you have both, please make a supertype for the shared constraints.

The lexical entry for the locative verb can introduce "_be+located_v_rel" as its LKEYS.KEYREL.PRED.


APs and PPs as stand-alone predicates

If your language allows APs and PPs as stand-alone predicates, the basic strategy is to modify the selecting contexts for sentences (initial symbol, clause embedding verbs) to generalize the requirements on HEAD. This needs to be done slightly differently depending on how tense/aspect are marked in these clauses.

Non-empty SUBJ values

Updated 2/23/09

The first step is to get from the attributive entries for As or Ps (or both) to predicative uses. The attributive entries should have empty SUBJ values and non-empty MOD values. The predicative entries should have empty MOD values and non-empty SUBJ values. In addition, the attributive As and Ps share their INDEX with the INDEX of the element they modify, but predicative As and Ps need to have their INDEX point to their own ARG0, and have their SUBJ's INDEX identified with their XARG.

For this purpose, I suggest a lexical rule. It should probably be lexeme-to-lexeme, and also inherit from local-change-only-lex-rule and no-ccont-lex-rule.

The mother of this lex rule has an NP or PP (as appropriate) on its SUBJ list, constrains the case of that NP or PP (as appropriate), and links its INDEX to the INDEX of the element on the MOD list of the daughter. The mother is also [HEAD adj], and links its HOOK.LTOP and HOOK.INDEX to the LTOP and LKEYS.KEYREL.ARG0 of the daughter. The mother should the same COMPS, SPEC and SPR values as the daughter. If you're using any other features in CAT or LOCAL outside those mentioned, their values should also be copied up.

Finally, you should declare a new feature, PRD, on the type head. Make the attributive (base) form of As/Ps [PRD -], and the derived predicative forms [PRD +]. Then edit the root condition to require [PRD +]. This will keep the [SUBJ <>, PRD -] attributive forms from serving as stand-alone clauses.

head :+ [ PRD bool ].

Unrestricted tense/aspect

If an AP or PP stand-alone predicate has underspecified tense and aspect (i.e., can be used in any tense/aspect context) or if it actually takes tense/aspect markers directly, then you can allow for AP or PP predicates by redefining the selecting contexts. In particular:

Note that even if it is possible to use a copula for, e.g., past tense AP/PP predicate sentences, you might still have unrestricted tense/aspect on the copulaless counterparts of these sentences. The key question is whether the copulaless sentences are necessarily interpreted as having a particular tense/aspect value. If so, see the next section.

Restricted to (e.g.) present tense sentences

If APs or PPs without a copula are interpreted as having some specific tense/aspect value (e.g., present tense) then these sentences need to have their TENSE value constrained. I see several ways of doing this. Though none jumps out yet as ideal (especially at a cross-linguistic level), the third one is probably the best of the bunch. If you need one or more elaborated, please post to GoPost:
  1. The selecting contexts are bifurcated allowing [HEAD verb] constituents (with any tense/aspect value) and [HEAD adp] or [HEAD adj] or [HEAD +jp] constituents with only a particular tense/aspect value. This would be reasonably easy for the root condition (you can have more than one, just define them in roots.tdl and then reference them in the definition of *start-symbol* in lkb/globals.lsp). It's a bit clunkier in the case of clause-embedding verbs, which would need two entries each.
  2. There is a lexical rule that takes an adjective/preposition which is not able to directly pick up its subject, and creates one that can, along the way filling in the tense information. Note that it won't do to have adjective and adpositions be lexically SUBJ < >, since then they will look like they are already SUBJ saturated.
  3. There is a non-branching rule that turns a PP/AP headed constituent into something that looks like an S ([HEAD verb, SUBJ < >, COMPS < >]), and along the way fills in the tense information.

NPs as stand-alone predicates

Finally, we come to the case of NPs used as predicates without any supporting verb. As with NPs used as the complement of a copula, we need to do something to get an extra predication in. Here, I think the best solution is a non-branching non-headed phrase structure rule which takes an NP daughter and produces a VP mother. It should introduce the "_be_v_id_rel" relation through the C-CONT.RELS, linking the C-CONT.INDEX to the ARG0 of this relation. If NPs as stand-alone predicates necessarily get present tense interpretation, this rule can also fill in that information.

If you also need a non-branching rule for tense-restricted PP or AP predicates, you might consider doing those the same way (VP over PP/AP), and sharing many constraints between the two rules. Note, however, that the PP/AP rule would have an empty C-CONT.RELS list.


Check your MRSs

Here are some sample MRSs to give you a sense of what we're looking for. Note that yours might differ in detail, because of e.g., different tense values or the use of a locative verb.

The child is happy.

<h1,e2:PRESENT:PROP-OR-QUES,
{h3:exist_q_rel(x4:uniq+fam+act:THIRD:SG, h7, h6),
h5:_child_n_rel(x4),
h8:_happy_a_rel(e2,x4)}
{h7 qeq h3} >

The child is in the park.

<h1,e2:PRESENT:PROP-OR-QUES,
{h3:exist_q_rel(x4:uniq+fam+act:THIRD:SG, h7, h6),
h5:_child_n_rel(x4),
h8:_in_p_rel(e2,x4,x9),
h10:exist_q_rel(x9:uniq+fam+act:THIRD:SG, h12, h11),
h13:_park_n_rel(x9)}
{h7 qeq h3
h12 qeq h13} >

The child is the winner.

<h1,e2:PRESENT:PROP-OR-QUES,
{h3:exist_q_rel(x4:uniq+fam+act:THIRD:SG, h7, h6),
h5:_child_n_rel(x4),
h8:_be_v_id_rel(e2,x4,x9),
h10:exist_q_rel(x9:uniq+fam+act:THIRD:SG, h12, h11),
h13:_winner_n_rel(x9)}
{h7 qeq h3
h12 qeq h13} >

Write up your analyses

For each of the following phenomena, please include the following your write up:

  1. A descriptive statement of the facts of your language.
  2. Illustrative IGT examples from your testsuite.
  3. A statement of how you implemented the phenomenon (in terms of types you added/modified and particular tdl constraints).
  4. If the analysis is not (fully) working, a description of the problems you are encountering.

In addition, your write up should include a statement of the current coverage of your grammar over your test suite (using numbers you can get from Analyze | Coverage and Analyze | Overgeneration in [incr tsdb()]) and a comparison between your baseline test suite run and your final one for this lab (see Compare | Competence).

Finally, document what happened when you made sure your grammar could still generate. Which examples did you try (IGT, please :)? What, if anything did you have to fix?


Submit your assignment


Back to main course page
ebender at u dot washington dot edu
Last modified: Mon Feb 23 21:37:42 PST 2009