Milutin Studen commited on
Commit
4c370b0
·
verified ·
1 Parent(s): f7c482f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +131 -81
README.md CHANGED
@@ -1,92 +1,142 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: words
7
- sequence: string
8
- - name: ner_tags
9
- sequence:
10
- class_label:
11
- names:
12
- '0': O
13
- '1': B-abstract
14
- '2': I-abstract
15
- '3': B-animal
16
- '4': I-animal
17
- '5': B-event
18
- '6': I-event
19
- '7': B-object
20
- '8': I-object
21
- '9': B-organization
22
- '10': I-organization
23
- '11': B-person
24
- '12': I-person
25
- '13': B-place
26
- '14': I-place
27
- '15': B-plant
28
- '16': I-plant
29
- '17': B-quantity
30
- '18': I-quantity
31
- '19': B-substance
32
- '20': I-substance
33
- '21': B-time
34
- '22': I-time
35
- splits:
36
- - name: train
37
- num_bytes: 754935
38
- num_examples: 2495
39
- - name: test
40
- num_bytes: 311483
41
- num_examples: 1000
42
- download_size: 296638
43
- dataset_size: 1066418
44
- configs:
45
- - config_name: default
46
- data_files:
47
- - split: train
48
- path: data/train-*
49
- - split: test
50
- path: data/test-*
51
- task_categories:
52
- - token-classification
53
- language:
54
- - en
55
- size_categories:
56
- - 1K<n<10K
57
- ---
58
  # GUM: The Georgetown University Multilayer Corpus
59
  The GUM corpus was collected and annotated at Georgetown University. For more information, see the [LICENSE](https://corpling.uis.georgetown.edu/gum).
60
 
61
- ## Labels
62
  - Number of labels: **23**
63
  ```Python
64
  ['O',
65
- 'B-abstract',
66
- 'I-abstract',
67
- 'B-animal',
68
- 'I-animal',
69
- 'B-event',
70
- 'I-event',
71
- 'B-object',
72
- 'I-object',
73
- 'B-organization',
74
- 'I-organization',
75
- 'B-person',
76
- 'I-person',
77
- 'B-place',
78
- 'I-place',
79
- 'B-plant',
80
- 'I-plant',
81
- 'B-quantity',
82
- 'I-quantity',
83
- 'B-substance',
84
- 'I-substance',
85
- 'B-time',
86
- 'I-time']
87
  ```
 
 
88
 
89
- ### Citation
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  ```
91
  @Article{Zeldes2017,
92
  author = {Amir Zeldes},
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: id
5
+ dtype: string
6
+ - name: words
7
+ sequence: string
8
+ - name: ner_tags
9
+ sequence:
10
+ class_label:
11
+ names:
12
+ '0': O
13
+ '1': B-abstract
14
+ '2': I-abstract
15
+ '3': B-animal
16
+ '4': I-animal
17
+ '5': B-event
18
+ '6': I-event
19
+ '7': B-object
20
+ '8': I-object
21
+ '9': B-organization
22
+ '10': I-organization
23
+ '11': B-person
24
+ '12': I-person
25
+ '13': B-place
26
+ '14': I-place
27
+ '15': B-plant
28
+ '16': I-plant
29
+ '17': B-quantity
30
+ '18': I-quantity
31
+ '19': B-substance
32
+ '20': I-substance
33
+ '21': B-time
34
+ '22': I-time
35
+ splits:
36
+ - name: train
37
+ num_bytes: 754935
38
+ num_examples: 2495
39
+ - name: test
40
+ num_bytes: 311483
41
+ num_examples: 1000
42
+ download_size: 296638
43
+ dataset_size: 1066418
44
+ configs:
45
+ - config_name: default
46
+ data_files:
47
+ - split: train
48
+ path: data/train-*
49
+ - split: test
50
+ path: data/test-*
51
+ task_categories:
52
+ - token-classification
53
+ language:
54
+ - en
55
+ size_categories:
56
+ - 1K<n<10K
57
+ ---
58
  # GUM: The Georgetown University Multilayer Corpus
59
  The GUM corpus was collected and annotated at Georgetown University. For more information, see the [LICENSE](https://corpling.uis.georgetown.edu/gum).
60
 
61
+ ## Structure
62
  - Number of labels: **23**
63
  ```Python
64
  ['O',
65
+ 'B-abstract', 'I-abstract',
66
+ 'B-animal', 'I-animal',
67
+ 'B-event', 'I-event',
68
+ 'B-object', 'I-object',
69
+ 'B-organization', 'I-organization',
70
+ 'B-person', 'I-person',
71
+ 'B-place', 'I-place',
72
+ 'B-plant', 'I-plant',
73
+ 'B-quantity', 'I-quantity',
74
+ 'B-substance', 'I-substance',
75
+ 'B-time', 'I-time']
 
 
 
 
 
 
 
 
 
 
 
76
  ```
77
+ ### Train set
78
+ Number of sentences in the train set: **2495**
79
 
80
+ Label count in train set:
81
+ | Label | Count |
82
+ |-----------------|--------|
83
+ | O | 20460 |
84
+ | I-abstract | 4687 |
85
+ | I-event | 2707 |
86
+ | I-place | 2212 |
87
+ | B-abstract | 2002 |
88
+ | B-person | 1920 |
89
+ | I-person | 1866 |
90
+ | I-object | 1732 |
91
+ | B-place | 1150 |
92
+ | B-object | 1017 |
93
+ | B-event | 738 |
94
+ | I-time | 663 |
95
+ | I-organization | 552 |
96
+ | I-substance | 458 |
97
+ | B-time | 401 |
98
+ | B-organization | 397 |
99
+ | B-substance | 278 |
100
+ | I-quantity | 203 |
101
+ | I-plant | 166 |
102
+ | B-plant | 144 |
103
+ | B-animal | 141 |
104
+ | I-animal | 120 |
105
+ | B-quantity | 97 |
106
+
107
+
108
+ ### Test set
109
+ Number of sentences in the test set: **1000**
110
+
111
+ Label count in test set:
112
+ | Label | Count |
113
+ |-----------------|-------|
114
+ | O | 8543 |
115
+ | I-abstract | 2048 |
116
+ | I-event | 934 |
117
+ | I-place | 926 |
118
+ | B-person | 823 |
119
+ | B-abstract | 798 |
120
+ | I-object | 782 |
121
+ | I-person | 685 |
122
+ | B-place | 469 |
123
+ | B-object | 420 |
124
+ | B-event | 315 |
125
+ | I-organization | 278 |
126
+ | I-time | 242 |
127
+ | B-organization | 192 |
128
+ | I-substance | 183 |
129
+ | B-time | 179 |
130
+ | B-substance | 95 |
131
+ | I-quantity | 77 |
132
+ | B-plant | 62 |
133
+ | I-plant | 56 |
134
+ | B-quantity | 44 |
135
+ | I-animal | 43 |
136
+ | B-animal | 42 |
137
+
138
+
139
+ ## Citation
140
  ```
141
  @Article{Zeldes2017,
142
  author = {Amir Zeldes},