File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ The annotation data is structured by the annotated texts and the annotators.
1717Each text is annotated by two annotators.
1818These 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
4646Every 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
You can’t perform that action at this time.
0 commit comments