Robin Kurtz commited on
Commit
aacc11b
1 Parent(s): e563097
Files changed (1) hide show
  1. README.md +123 -0
README.md ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - other
6
+ languages:
7
+ - sv-SE
8
+ licenses:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: suc3.1
13
+ size_categories:
14
+ - 10K<n<100K
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - structure-prediction
19
+ task_ids:
20
+ - named-entity-recognition
21
+ - part-of-speech-tagging
22
+ ---
23
+
24
+ # Dataset Card for SUC 3.1
25
+
26
+ ## Dataset Description
27
+
28
+ - **Homepage:** [https://spraakbanken.gu.se/en/resources/suc3](https://spraakbanken.gu.se/en/resources/suc3)
29
+ - **Repository:** [https://github.com/kb-labb/suc3.1](https://github.com/kb-labb/suc3.1)
30
+ - **Paper:** [SUC 2.0 manual](http://spraakbanken.gu.se/parole/Docs/SUC2.0-manual.pdf)
31
+ - **Point of Contact:** robin.kurtz@kb.se
32
+
33
+ ### Dataset Summary
34
+
35
+ The dataset is a conversion of the venerable SUC 3.0 dataset into the
36
+ huggingface ecosystem.
37
+ The original dataset does not contain an official train-dev-test split, which is
38
+ introduced here; the tag distribution for the NER tags between the three splits
39
+ is mostly the same.
40
+
41
+ The dataset has three different types of tagsets: manually annotated POS,
42
+ manually annotated NER, and automatically annotated NER.
43
+ For the automatically annotated NER tags, only sentences were chosen, where the
44
+ automatic and manual annotations would match (with their respective categories).
45
+
46
+ Additionally we provide remixes of the same data with some or all sentences
47
+ being lowercased.
48
+
49
+ ### Supported Tasks and Leaderboards
50
+
51
+ - Part-of-Speech tagging
52
+ - Named-Entity-Recognition
53
+
54
+ ### Languages
55
+
56
+ Swedish
57
+
58
+ ## Dataset Structure
59
+
60
+ ### Data Remixes
61
+
62
+ - `original_tags` contain the manual NER annotations
63
+ - `lower` the whole dataset uncased
64
+ - `lower_mix` some of the dataset uncased
65
+ - `lower_both` every instance both cased and uncased
66
+ - `simple_tags` contain the automatic NER annotations
67
+ - `lower` the whole dataset uncased
68
+ - `lower_mix` some of the dataset uncased
69
+ - `lower_both` every instance both cased and uncased
70
+ - `simple_tags.no_MSR_TME` contain the automatic NER annotations without `MSR` and `TME` tags
71
+ - `lower` the whole dataset uncased
72
+ - `lower_mix` some of the dataset uncased
73
+ - `lower_both` every instance both cased and uncased
74
+
75
+ ### Data Instances
76
+
77
+ For each instance, there is an `id`, with an optional `_lower` suffix to mark
78
+ that it has been modified, a `tokens` list of strings containing tokens, a
79
+ `pos_tags` list of strings containing POS-tags, and a `ner_tags` list of strings
80
+ containing NER-tags.
81
+
82
+ ```json
83
+ {"id": "e24d782c-e2475603_lower",
84
+ "tokens": ["-", "dels", "har", "vi", "inget", "index", "att", "g\u00e5", "efter", ",", "vi", "kr\u00e4ver", "allts\u00e5", "ers\u00e4ttning", "i", "40-talets", "penningv\u00e4rde", "."],
85
+ "pos_tags": ["MID", "KN", "VB", "PN", "DT", "NN", "IE", "VB", "PP", "MID", "PN", "VB", "AB", "NN", "PP", "NN", "NN", "MAD"],
86
+ "ner_tags": ["O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O", "O"]}
87
+ ```
88
+
89
+ ### Data Fields
90
+
91
+ - `id`: a string containing the sentence-id
92
+ - `tokens`: a list of strings containing the sentence's tokens
93
+ - `pos_tags`: a list of strings containing the tokens' POS annotations
94
+ - `ner_tags`: a list of strings containing the tokens' NER annotations
95
+
96
+ ### Data Splits
97
+
98
+ | Dataset Split | Size Percentage of Total Dataset Size | Number of Instances for the Original Tags |
99
+ | ------------- | ------------------------------------- | ----------------------------------------- |
100
+ | train | 64% | 46\,026 |
101
+ | dev | 16% | 11\,506 |
102
+ | test | 20% | 14\,383 |
103
+
104
+ The `simple_tags` remix has fewer instances due to the requirement to match
105
+ tags.
106
+
107
+ ## Dataset Creation
108
+
109
+ See the [original webpage](https://spraakbanken.gu.se/en/resources/suc3)
110
+
111
+ ## Additional Information
112
+
113
+ ### Dataset Curators
114
+
115
+ [Språkbanken](sb-info@svenska.gu.se)
116
+
117
+ ### Licensing Information
118
+
119
+ CC BY 4.0 (attribution)
120
+
121
+ ### Citation Information
122
+
123
+ [SUC 2.0 manual](http://spraakbanken.gu.se/parole/Docs/SUC2.0-manual.pdf)