-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathsample.json
54 lines (54 loc) · 1.25 KB
/
sample.json
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
[
{
"sentence": "He visited all his friends.",
"tokens": ["He", "visited", "all", "his", "friends", "."],
"pos-tag": ["PRP", "VBD", "PDT", "PRP$", "NNS", "."],
"golden_entity_mentions": [
{
"text": "He",
"entity_type": "PER:Individual",
"start": 0,
"end": 0
},
{
"text": "his",
"entity_type": "PER:Group",
"start": 3,
"end": 3
},
{
"text": "all his friends",
"entity_type": "PER:Group",
"start": 2,
"end": 5
}
],
"golden_event_mentions": [
{
"trigger": {
"text": "visited",
"start": 1,
"end": 1
},
"arguments": [
{
"role": "Entity",
"entity_type": "PER:Individual",
"text": "He",
"start": 0,
"end": 0
},
{
"role": "Entity",
"entity_type": "PER:Group",
"text": "all his friends",
"start": 2,
"end": 5
}
],
"event_type": "Contact:Meet"
}
],
"parse": "(ROOT\n (S\n (NP (PRP He))\n (VP (VBD visited)\n (NP (PDT all) (PRP$ his) (NNS friends)))\n (. .)))"
}
]