Hoorcollege 4: Semantic graphs Flashcards

1
Q

Directed graphs

A

G = (N, E)
can also be labelled / rooted graphs

Nodes are circles. Edge (a, b) is an arrow from node a to node b)

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

Trees as graphs

A

A tree is a rooted graph in which, for every node n, there is exactly one directed path from the root to n.

  • Path is a sequence of nodes in which each adjacent pair (a, b) is connected by an edge; i.e. (a,b) ∈ E or (b,a) ∈ E.
  • Directed path is a sequence of nodes in which each adjacent pair is in E
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

semantic representations often have ways of handling these “extra” dependencies

A
  • Indexed traces and other empty categories in syntax trees
    ti -> referent is the same as higher in DP
  • Variables in logical expressions
    λx : dance(x) ∧ sing(x)
  • Graphs

Because relate to more than one other part of the sentence

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

More graph concepts

A
  • Undirected graph: Graph in which edges are binary sets, not order pairs
  • (un) direced cycle: (un) directed path from a node back to itself
  • Reentrancy: A node with more than one incoming edge
  • DAG: Directed graph with no directed cyles
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Bilexical Semantic dependencies

A

3 frameworks:
* DM, PAS, PSD
* Semantic representation design
Should functional words be in the graph?
What about semantic scope?
Which kinds of coreference should create reentrancies?

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

Abstract meaning representation (AMR)

A

Abstract away from the sentence
* Edges: propbank (Argi) similar idea to framenet
* Verb: stem + number (e.g pilot-01)
* Provides numbers for arguments Arg0, Arg01)

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