Syntactic Parsing - Dependency Structures Flashcards

1
Q

What 2 ways can syntactic ambiguity be brought about?

A
  • Multiple interpretations due to multiple meanings
  • preposition attached to more than one token
    “I saw the man on the hill [with] a telescope”
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a dependency?

A

an asymmetric binary linking two tokens.

One is the head and the other is the dependent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the head and what is the dependent?

A

Head- is the main verb in a verb phrase or the main noun in a noun phrase

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the other words for the head-dependent relationship?

A

superior-inferior
governor-modified
regent-subordinate

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do we know if something is a head or a dependent?

A

The dependents modify the head

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a dependency graph?

A

nodes are the tokens and edges are the relation type labels

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the different notation structures for dependency relationships?

A

horizontal (arrows one way or the other)
tree of tokens
tree of POS tagged tokens
machine readable (inline annotation)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

nmod/amod

A

phrase that modifies a noun phrase

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

where is the nmod relationship in “sam eats red meat”

A

nmod(red, meat)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

aux

A

non-main verb of a clause

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

where is the aux relationship in “he should leave”

A

aux(leave, should)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

cc

A

coordination- connects element of a conjunct and coordinating word

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

where is the cc relationship in “they should either ski or snowboard”

A

cc(ski,or)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

det

A

between the head of a np and its determiner

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

where is the det relationship in “the man is here”

A

det(man, the)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

obj/dobj

A

between a verb and a np denoting the entity acted upon

17
Q

where is the obj relationship in “she gave me a raise”

A

obj(gave,raise)

18
Q

iobj

A

between a verb and a np acting as an indirect object

19
Q

where is the iobj relationship in “she gave me a raise”

A

iobj(gave, me)

20
Q

vmod

A

phrase that modifies a verb phrase

21
Q

where is the vmod relationship in “genetically modified food”

A

vmod(modified, genetically)

22
Q

sbj/nsubj

A

between a verb and a np denoting the entity that serves as subject or agent

23
Q

where is the sbj relationship in “clinton defeated cole”

A

sbj(defeated, clinton)

24
Q

pobj/pc

A

object of preposition

head of np following a proposition

25
Q

where is the pobj relationship in “I sat on the chair”

A

pobj(on, chair)

26
Q

p/punct

A

punctuation. between the head of the sentence (the root) and punctuation

27
Q

where is the punct relationship in “go home!”

A

punct(go, !)

28
Q

A dependency structure is endocentric if…

A

it fulfils the same linguistic function as one of its parts.

These are not required

29
Q

A dependency structure is exocentric if…

A

it does not fulfil the same linguistic function as one of its parts.
These are required

30
Q

Endocentric dependency structures? (2)

A

vmod amod

31
Q

Exocentric dependency structures? (2)

A

subj, obj

32
Q

What is verb valency?

A

Certain verbs require certain types of dependents

33
Q

what is univalent, give an example

A

1 subject e.g. “dance”, danced(she)

34
Q

what is divalent, give an example

A

1 subject, 1 object e.g. “ate”, ate(he,chocolates)

35
Q

what is trivalent, give an example

A

1 subject, 2 objects e.g. “gave”, gave(he, document, her)

36
Q

what is avalent, give an example

A

no subjects e.g. “rains”, it rains, rains()

37
Q

What is a predicate argument structure (PAS)?

A

A generalisation of verb valency

38
Q

How is predicate argument structure (PAS) different to verb valency?

A

predicates can be any POS, with arguments specified using an argument number.