-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathannotation.conf
59 lines (45 loc) · 2.3 KB
/
annotation.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Simple text-based definitions of hierarchial ontologies of
# (physical) entity types, relation types, event types, and
# attributes.
[entities]
# Definition of entities.
# Format is a simple list with one type per line.
Argument
Note
[relations]
# Definition of (binary) relations.
# Format in brief: one relation per line, with first space-separated
# field giving the relation type and the rest of the line the
# comma-separated arguments in ROLE:TYPE format. The roles are
# typically "Arg1" and "Arg2".
Coref Arg1:Argument, Arg2:Argument
<OVERLAP> Arg1:<ENTITY>, Arg2:<ENTITY>, <OVL-TYPE>:<ANY>
[events]
# Definition of events.
# Format in brief: one event per line, with first space-separated
# field giving the event type and the rest of the line the
# comma-separated arguments in ROLE:TYPE format. Arguments may be
# specified as either optional (by appending "?" to role) or repeated
# (by appending either "*" for "0 or more" or "+" for "1 or more").
!Causation
Consequence Cause?:Argument, Effect?:Argument, Means?:Argument
Motivation Cause?:Argument, Effect?:Argument, Means?:Argument
# Inference Cause?:Argument, Effect?:Argument, Means?:Argument
Purpose Cause?:Argument, Effect?:Argument, Means?:Argument
NonCausal Arg0?:Argument, Arg1?:Argument
[attributes]
# Definition of entity and event attributes.
# Format in brief: first tab-separated field is attribute name, second
# a set of key-value pairs. The latter must define "Arg:" which
# specifies what the attribute can attach to (typically "<EVENT>").
# If no other keys are defined, the attribute is binary (present or
# absent). If "Value:" with multiple alternatives is defined, the
# attribute can have one of the given values.
Degree Arg:Consequence|Motivation|Inference|Purpose, Value:Facilitate|Inhibit, <DEFAULT>:Facilitate
Temporal Arg:Consequence|Motivation|Inference|Purpose|NonCausal
Correlation Arg:Consequence|Motivation|Inference|Purpose|NonCausal
Hypothetical Arg:Consequence|Motivation|Inference|Purpose|NonCausal
Obligation-permission Arg:Consequence|Motivation|Inference|Purpose|NonCausal
Creation-termination Arg:Consequence|Motivation|Inference|Purpose|NonCausal
Extremity-sufficiency Arg:Consequence|Motivation|Inference|Purpose|NonCausal
Context Arg:Consequence|Motivation|Inference|Purpose|NonCausal