Skip to content

Commit e6bc150

Browse files
committed
update annotation data
1 parent 8675fc9 commit e6bc150

2 files changed

Lines changed: 15 additions & 20 deletions

File tree

Annotations_EvENT.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

README.md

Lines changed: 14 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The annotation data is structured by the annotated texts and the annotators.
1717
Each text is annotated by two annotators.
1818
These annotations are the basis for the gold standard annotations.
1919

20-
```json
20+
```python
2121

2222
{
2323
"Text 1": {
@@ -45,32 +45,27 @@ These annotations are the basis for the gold standard annotations.
4545

4646
Every annotation is represented in this structure:
4747

48-
```json
48+
```python
4949
{
50-
"annotation": "den man gewöhnlich nur den blonden Eckbert nannte", # the annotated text span
51-
"tag": "process", # the event type classification
52-
"properties": { # additional classifications depending on the event type
50+
"annotation": "In einer Gegend des Harzes wohnte ein Ritter", # the annotated text span
51+
"tag": "stative_event", # the event type classification
52+
"properties": { # additional classifications depending on the event type
53+
"unpredictable": [
54+
0
55+
],
5356
"mental": [
5457
"no"
5558
],
56-
"persistent": [
57-
"2"
58-
],
5959
"representation_type": [
6060
"narrator_speech"
61-
],
62-
"iterative": [
63-
"yes"
64-
],
65-
"unpredictable": [
66-
"0"
67-
],
68-
"intentional": [
69-
"yes"
7061
]
7162
},
72-
"start_point": 108, # the start pointer in the annotated text
73-
"end_point": 157 # the end pointer in the annotated text
63+
"spans": [ # the text spans
64+
[
65+
62,
66+
106
67+
]
68+
]
7469
}
7570
```
7671

0 commit comments

Comments
 (0)