Documentation

Linglib.Studies.DeMarneffeNivre2019

de Marneffe & Nivre 2019: UD enhanced dependencies for English LD and coordination #

[dMN19]

Worked English examples illustrating Universal Dependencies' basic vs enhanced representations (cf. §4.2 and Figure 9 of [dMN19]). Enhanced graphs are built by adding the extra arcs with Graph.enhance; per UD v2, coordinators attach via cc to the conjunct they introduce.

Examples #

Long-distance dependencies #

Coordination #

Implementation notes #

Fixtures use Word.mk' (featureless) except the wh-words; the worked theorems are structural (Graph.IsTree, arc labels, decide).

Wh-question fixtures #

"What did John see?" — object wh-question (basic tree). Words: what(0) did(1) John(2) see(3). The wh-word attaches as obj of the main verb.

Equations
  • One or more equations did not get rendered due to their size.
Instances For

    "Who saw Mary?" — subject wh-question (no gap needed).

    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      "Who did John see?" — object wh-question with who.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        Relative-clause fixtures #

        "the book that John read" — object relative clause (basic tree). In UD the relative clause attaches via acl from head noun to RC verb; the gap (book as obj of read) is implicit.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          Complement-clause fixtures #

          "John thinks that Mary sleeps" — that-complement (no gap).

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For

            "John thinks Mary sleeps" — bare complement (that-omission, no gap).

            Equations
            • One or more equations did not get rendered due to their size.
            Instances For

              "John wonders if Mary sleeps" — if-complement (no gap).

              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                "John wonders what Mary saw" — embedded wh-question. Words: John(0) wonders(1) what(2) Mary(3) saw(4).

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For

                  Coordination fixtures #

                  "John and Mary sleep" — NP coordination.

                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For

                    "John sleeps and Mary sleeps" — S coordination.

                    Equations
                    • One or more equations did not get rendered due to their size.
                    Instances For

                      "John sees and hears Mary" — VP coordination (basic tree). Mary attaches as obj of sees only; hears is conj of sees.

                      Equations
                      • One or more equations did not get rendered due to their size.
                      Instances For

                        Enhanced graph for "John sees and hears Mary": Mary is obj of both sees and hears (shared-dep propagation).

                        Equations
                        Instances For

                          "the happy and smart boy" — adjective coordination.

                          Equations
                          • One or more equations did not get rendered due to their size.
                          Instances For

                            "John likes and Mary hates pizza" — Right Node Raising (basic tree). pizza attaches to likes only.

                            Equations
                            • One or more equations did not get rendered due to their size.
                            Instances For

                              Enhanced graph for RNR: pizza is obj of both verbs.

                              Equations
                              Instances For

                                Conjuncts share their category — the parallelism constraint on coordination ([dMN19] §4.2), study-locally.

                                Equations
                                Instances For

                                  Worked theorems — long-distance dependencies #

                                  Object wh-questions have a [wh] filler at position 0.

                                  The enhanced graph for "the book that John read" has the obj-gap arc; the basic tree lacks it.

                                  The enhanced relclause graph violates tree-hood (book now has two heads), per [dMN19] §4.4; the basic tree is a tree.

                                  Worked theorems — coordination #

                                  Shared-dependent propagation adds the missing obj arc from hears to Mary; the basic tree lacks it.

                                  The enhanced coordination graph violates tree-hood; the basic tree is a tree.

                                  RNR enhancement propagates obj to the second-conjunct verb, and the result is no longer a tree.