Stern5497 commited on
Commit
771fa58
1 Parent(s): 6b11cf9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +148 -41
README.md CHANGED
@@ -1,47 +1,74 @@
1
- ## Dataset: Swiss Legislation
2
-
3
- ### Description
4
- This dataset contains legislation texts in five languages:
5
- - German _(17,559 entries)_
6
- - French _(11,197 entries)_
7
- - Italian _(6,201 entries)_
8
- - Romansh _(534 entries)_
9
- - English _(207 entries)_
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
  The total number of texts in the dataset is 35,698. The dataset is saved in _lexfind_v2.jsonl_ format.
 
 
 
 
 
 
 
 
 
12
 
13
- ### Canton Distribution
14
- 1. 'ch': Switzerland (Federal) - 15840
15
- 2. 'fr': Fribourg - 1633
16
- 3. 'be': Bern - 1344
17
- 4. 'vs': Valais - 1328
18
- 5. 'gr': Graubünden - 1205
19
- 6. 'ne': Neuchâtel - 1115
20
- 7. 'zh': Zurich - 974
21
- 8. 'bs': Basel-Stadt - 899
22
- 9. 'bl': Basel-Landschaft - 863
23
- 10. 'vd': Vaud - 870
24
- 11. 'ge': Geneva - 837
25
- 12. 'sg': St. Gallen - 764
26
- 13. 'ju': Jura - 804
27
- 14. 'zg': Zug - 632
28
- 15. 'ti': Ticino - 627
29
- 16. 'lu': Lucerne - 584
30
- 17. 'so': Solothurn - 547
31
- 18. 'ow': Obwalden - 513
32
- 19. 'ik': Interkantonal - 510
33
- 20. 'sh': Schaffhausen - 469
34
- 21. 'gl': Glarus - 467
35
- 22. 'tg': Thurgau - 453
36
- 23. 'sz': Schwyz - 423
37
- 24. 'ai': Appenzell Innerrhoden - 416
38
- 25. 'ag': Aargau - 483
39
- 26. 'ar': Appenzell Ausserrhoden - 330
40
- 27. 'nw': Nidwalden - 401
41
- 28. 'ur': Uri - 367
42
 
 
43
 
44
- ### Data
45
  Each entry in the dataset is a dictionary with the following keys:
46
  - `canton`: the canton of origin of the legislation
47
  - example: "ag"
@@ -82,6 +109,86 @@ Each entry in the dataset is a dictionary with the following keys:
82
  - `quotes`: a list of quotes from the legislation
83
  - example: []
84
 
85
- ### Splits
86
- There is only one split in this dataset, which contains all the legislation texts.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ task_categories:
4
+ - text-classification
5
+ - translation
6
+ language:
7
+ - de
8
+ - fr
9
+ - it
10
+ pretty_name: Swiss Legislation
11
+ size_categories:
12
+ - 100K<n<1M
13
+ ---
14
+
15
+ # Dataset Card for Swiss Legislation
16
+
17
+ ## Table of Contents
18
+ - [Table of Contents](#table-of-contents)
19
+ - [Dataset Description](#dataset-description)
20
+ - [Dataset Summary](#dataset-summary)
21
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
22
+ - [Languages](#languages)
23
+ - [Dataset Structure](#dataset-structure)
24
+ - [Data Instances](#data-instances)
25
+ - [Data Fields](#data-fields)
26
+ - [Data Splits](#data-splits)
27
+ - [Dataset Creation](#dataset-creation)
28
+ - [Curation Rationale](#curation-rationale)
29
+ - [Source Data](#source-data)
30
+ - [Annotations](#annotations)
31
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
32
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
33
+ - [Social Impact of Dataset](#social-impact-of-dataset)
34
+ - [Discussion of Biases](#discussion-of-biases)
35
+ - [Other Known Limitations](#other-known-limitations)
36
+ - [Additional Information](#additional-information)
37
+ - [Dataset Curators](#dataset-curators)
38
+ - [Licensing Information](#licensing-information)
39
+ - [Citation Information](#citation-information)
40
+ - [Contributions](#contributions)
41
+
42
+ ## Dataset Description
43
+
44
+ - **Homepage:**
45
+ - **Repository:**
46
+ - **Paper:**
47
+ - **Leaderboard:**
48
+ - **Point of Contact:**
49
+
50
+ ### Dataset Summary
51
+
52
+ Swiss Citation Extraction is a multilingual, diachronic dataset of 36K Swiss laws. This dataset is part of a challenging Information Retreival task.
53
+ ### Supported Tasks and Leaderboards
54
+
55
+ ### Languages
56
 
57
  The total number of texts in the dataset is 35,698. The dataset is saved in _lexfind_v2.jsonl_ format.
58
+ Switzerland has four official languages German, French, Italian and Romanch with some additional English laws being represenated. Laws are written by legal experts.
59
+ 36K & 18K & 11K & 6K & 534 & 207
60
+ | Language | Subset | Number of Documents |
61
+ |------------|------------|----------------------|
62
+ | German | **de** | 18K |
63
+ | French | **fr** | 11K |
64
+ | Italian | **it** | 6K |
65
+ | Romanch | **rm** | 534 |
66
+ | English | **en** | 207 |
67
 
68
+ ## Dataset Structure
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ ### Data Fields
71
 
 
72
  Each entry in the dataset is a dictionary with the following keys:
73
  - `canton`: the canton of origin of the legislation
74
  - example: "ag"
 
109
  - `quotes`: a list of quotes from the legislation
110
  - example: []
111
 
112
+ ### Data Instances
113
+ [More Information Needed]
114
+ ### Data Fields
115
+ [More Information Needed]
116
+ ### Data Splits
117
+
118
+ 1. 'ch': Switzerland (Federal) - 15840
119
+ 2. 'fr': Fribourg - 1633
120
+ 3. 'be': Bern - 1344
121
+ 4. 'vs': Valais - 1328
122
+ 5. 'gr': Graubünden - 1205
123
+ 6. 'ne': Neuchâtel - 1115
124
+ 7. 'zh': Zurich - 974
125
+ 8. 'bs': Basel-Stadt - 899
126
+ 9. 'bl': Basel-Landschaft - 863
127
+ 10. 'vd': Vaud - 870
128
+ 11. 'ge': Geneva - 837
129
+ 12. 'sg': St. Gallen - 764
130
+ 13. 'ju': Jura - 804
131
+ 14. 'zg': Zug - 632
132
+ 15. 'ti': Ticino - 627
133
+ 16. 'lu': Lucerne - 584
134
+ 17. 'so': Solothurn - 547
135
+ 18. 'ow': Obwalden - 513
136
+ 19. 'ik': Interkantonal - 510
137
+ 20. 'sh': Schaffhausen - 469
138
+ 21. 'gl': Glarus - 467
139
+ 22. 'tg': Thurgau - 453
140
+ 23. 'sz': Schwyz - 423
141
+ 24. 'ai': Appenzell Innerrhoden - 416
142
+ 25. 'ag': Aargau - 483
143
+ 26. 'ar': Appenzell Ausserrhoden - 330
144
+ 27. 'nw': Nidwalden - 401
145
+ 28. 'ur': Uri - 367
146
+ 29.
147
+ ## Dataset Creation
148
+ ### Curation Rationale
149
+ ### Source Data
150
+ #### Initial Data Collection and Normalization
151
+
152
+ The original data are published from the Swiss Federal Supreme Court (https://www.bger.ch) in unprocessed formats (HTML). The documents were downloaded from the Entscheidsuche portal (https://entscheidsuche.ch) in HTML.
153
+
154
+ #### Who are the source language producers?
155
+
156
+ The decisions are written by the judges and clerks in the language of the proceedings.
157
+
158
+ ### Annotations
159
+ #### Annotation process
160
+
161
+ #### Who are the annotators?
162
+
163
+ Metadata is published by the Swiss Federal Supreme Court (https://www.bger.ch).
164
+
165
+ ### Personal and Sensitive Information
166
+
167
+ The dataset contains publicly available court decisions from the Swiss Federal Supreme Court. Personal or sensitive information has been anonymized by the court before publication according to the following guidelines: https://www.bger.ch/home/juridiction/anonymisierungsregeln.html.
168
+
169
+ ## Considerations for Using the Data
170
+ ### Social Impact of Dataset
171
+ [More Information Needed]
172
+ ### Discussion of Biases
173
+ [More Information Needed]
174
+ ### Other Known Limitations
175
+ [More Information Needed]
176
+ ## Additional Information
177
+ ### Dataset Curators
178
+ [More Information Needed]
179
+ ### Licensing Information
180
+
181
+ We release the data under CC-BY-4.0 which complies with the court licensing (https://www.bger.ch/files/live/sites/bger/files/pdf/de/urteilsveroeffentlichung_d.pdf)
182
+ © Swiss Federal Supreme Court, 2002-2022
183
+
184
+ The copyright for the editorial content of this website and the consolidated texts, which is owned by the Swiss Federal Supreme Court, is licensed under the Creative Commons Attribution 4.0 International licence. This means that you can re-use the content provided you acknowledge the source and indicate any changes you have made.
185
+ Source: https://www.bger.ch/files/live/sites/bger/files/pdf/de/urteilsveroeffentlichung_d.pdf
186
+
187
+ ### Citation Information
188
 
189
+ *Visu, Ronja, Joel*
190
+ *Title: Blabliblablu*
191
+ *Name of conference*
192
+ ```
193
+ cit
194
+ ```