| - Up - | Next >> |
A dependency grammar G is a 7-tuple

a finite set of strings notating the fully inflected forms of words

a finite set of categories such as det for determiner or vfin for finite verb

a finite set of agreement tuples such as <masc sing 3 nom>

a finite set of complement role types such as subject or dative (for dative NP complement)

a finite set of modifier role types, such as adj for adjectives, disjoint from
. We write
for the set of all role types. They will serve to label the edges of a dependency tree.

a finite set of lexical entries (see later)

a family of binary predicates, indexed by role labels, expressing local grammatical principles: for each
there is a
such that
characterizes the admissibility of an edge labeled
from mother
to daughter
.
In practice, in addition to category and agreement, we will need other features to encode miscellaneous details (e. g. `zu' particle, detachable verb prefixes, choice of auxiliary verb). For the time being, we will simply ignore them and postpone their introduction until the presentation of our implementation.
| - Up - | Next >> |