Annotating Non-core Arguments
So far, we have only seen predicates with at most two arguments, all of whose roles are defined by the (base) frame that the predicate is annotated with. We call the base frame together with any frames stacked on top of it the core frame. But many verbs have more than two arguments, or otherwise arguments with roles from different frames. One very common example is causative subjects, denoting an entity presented as causing the situation denoted by the core frame. For example, consider the following:
Dependency graph for sentence: The vase broke. Token broke is labeled INTERNAL-STATE-INIT and has an edge labeled has-state to token vase.
Dependency graph for sentence: Kim broke the vase. Token broke is labeled INTERNAL-STATE-INIT and has an edge labeled CAUSER to token Kim and an edge labeled has-state to token vase.
In both sentences, the core frame is INTERNAL-STATE-INIT, with the vase as
the has-state argument. In the second sentence, Kim is added as another
argument, presented as the causer of the situation denoted by the core frame
(the breaking of the vase). We thus annotate it with the causer role from the
CAUSATION frame. To distinguish them from core arguments, non-core arguments
are written in all upper case.
Note
Adding a non-core role is interpreted as implicitly adding the corresponding frame, where the dependent fills the non-core role, and the core frame fills the other role. Thus, in the example, by adding
CAUSERas the non-core role, we implicitly add aCAUSATIONframe whosecauserrole is filled by Kim, and whoseeffectrole is filled by the breaking of the vase.
Similar examples include:
Dependency graph for sentence: Kim threw the vase to the ground. Token threw is labeled LOCATION-INIT and has an edge labeled CAUSER to token Kim and an edge labeled has-location to token vase and an edge labeled location to token ground.
Dependency graph for sentence: Kim gave Sandy a book. Token gave is labeled POSSESSION-INIT and has an edge labeled CAUSER to token Kim and an edge labeled possessor to token Sandy and an edge labeled possessum to token book.
Dependency graph for sentence: Alex introduced Kim to Sandy. Token introduced is labeled SOCIAL-RELATION-INIT and has an edge labeled CAUSER to token Alex and an edge labeled socially-related to token Kim and an edge labeled socially-related-to to token Sandy.
Dependency graph for sentence: The official married Kim to Sandy. Token married is labeled SOCIAL-RELATION-INIT and has an edge labeled CAUSER to token official and an edge labeled socially-related to token Kim and an edge labeled socially-related-to to token Sandy.
Dependency graph for sentence: Kim prevented Sandy from going. Token prevented is labeled META-PREVENTION and has an edge labeled CAUSER to token Kim and an edge labeled participant to token Sandy and an edge labeled scene to token going. Token going is labeled LOCATION-INIT and has an edge labeled has-location to token Sandy.
Dependency graph for sentence: Swift action prevented an outbreak. Token prevented is labeled PREVENTION and has an edge labeled CAUSER to token action and an edge labeled prevented to token outbreak.
Two other very common non-core arguments are the sender and recipients (experiencers) of messages.
Dependency graph for sentence: Kim talked to Sandy about Bali. Token talked is labeled MESSAGE-INIT and has an edge labeled SENDER to token Kim and an edge labeled EXPERIENCER to token Sandy and an edge labeled content to token Bali.
Dependency graph for sentence: I showed my masterpiece to the grown-ups. Token showed is labeled MESSAGE-INIT and has an edge labeled SENDER to token I and an edge labeled content to token masterpiece and an edge labeled EXPERIENCER to token grown-ups.
Other non-core arguments are usually rather predicate-specific.
Dependency graph for sentence: Kim searched the woods for Sandy. Token searched is labeled MESSAGE-INIT and has an edge labeled EXPERIENCER to token Kim and an edge labeled LOCATION to token woods and an edge labeled content to token Sandy.
Dependency graph for sentence: Kim bought the house for a million dollars. Token bought is labeled POSSESSION-INIT and has an edge labeled possessor to token Kim and an edge labeled possessum to token house and an edge labeled ASSET to token dollars.