Stern5497 commited on
Commit
97f3dd3
1 Parent(s): 9626a0c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +172 -4
README.md CHANGED
@@ -1,12 +1,180 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
3
- task_categories:
4
- - text-classification
5
- - translation
6
  language:
7
  - de
8
  - it
9
  - fr
10
  size_categories:
11
  - 10K<n<100K
12
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
3
  language:
4
  - de
5
  - it
6
  - fr
7
  size_categories:
8
  - 10K<n<100K
9
+ annotations_creators:
10
+ - machine-generated
11
+ language_creators:
12
+ - expert-generated
13
+ multilinguality:
14
+ - multilingual
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - text-classification
19
+ pretty_name: Swiss Leading Decisions
20
+ ---
21
+ # Dataset Card for [legal criticality prediction]
22
+
23
+ ## Table of Contents
24
+ - [Table of Contents](#table-of-contents)
25
+ - [Dataset Description](#dataset-description)
26
+ - [Dataset Summary](#dataset-summary)
27
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
28
+ - [Languages](#languages)
29
+ - [Dataset Structure](#dataset-structure)
30
+ - [Data Instances](#data-instances)
31
+ - [Data Fields](#data-fields)
32
+ - [Data Splits](#data-splits)
33
+ - [Dataset Creation](#dataset-creation)
34
+ - [Curation Rationale](#curation-rationale)
35
+ - [Source Data](#source-data)
36
+ - [Annotations](#annotations)
37
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
38
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
39
+ - [Social Impact of Dataset](#social-impact-of-dataset)
40
+ - [Discussion of Biases](#discussion-of-biases)
41
+ - [Other Known Limitations](#other-known-limitations)
42
+ - [Additional Information](#additional-information)
43
+ - [Dataset Curators](#dataset-curators)
44
+ - [Licensing Information](#licensing-information)
45
+ - [Citation Information](#citation-information)
46
+ - [Contributions](#contributions)
47
+
48
+ ## Dataset Description
49
+
50
+ - **Homepage:**
51
+ - **Repository:**
52
+ - **Paper:**
53
+ - **Leaderboard:**
54
+ - **Point of Contact:**
55
+
56
+ ### Dataset Summary
57
+
58
+ Swiss Leading Decisions is a multilingual, diachronic dataset of 21K Swiss Federal Supreme Court (FSCS) cases. This dataset is part of a challenging text classification task. We also provide additional metadata as the publication year, the law area and the canton of origin per case, to promote robustness and fairness studies on the critical area of legal NLP.
59
+
60
+ ### Supported Tasks and Leaderboards
61
+
62
+ Swiss Leading Decisions hepled in a text classification task
63
+
64
+ ### Languages
65
+
66
+ Switzerland has four official languages with three languages German, French and Italian being represenated. The decisions are written by the judges and clerks in the language of the proceedings.
67
+
68
+ ## Dataset Structure
69
+
70
+ ```
71
+ {
72
+ "decision_id": "008d8a52-f0ea-4820-a18c-d06066dbb407",
73
+ "language": "fr",
74
+ "year": "2018",
75
+ "chamber": "CH_BGer_004",
76
+ "region": "Federation",
77
+ "origin_chamber": "338.0",
78
+ "origin_court": "127.0",
79
+ "origin_canton": "24.0",
80
+ "law_area": "civil_law",
81
+ "law_sub_area": ,
82
+ "bge_label": "critical",
83
+ "citation_label": "critical-1",
84
+ "facts": "Faits : A. A.a. Le 17 août 2007, C.X._, née le 14 février 1944 et domiciliée...",
85
+ "considerations": "Considérant en droit : 1. Interjeté en temps utile (art. 100 al. 1 LTF) par les défendeurs qui ont succombé dans leurs conclusions (art. 76 LTF) contre une décision...",
86
+ "rulings": "Par ces motifs, le Tribunal fédéral prononce : 1. Le recours est rejeté. 2. Les frais judiciaires, arrêtés à 10'000 fr., sont mis solidairement à la charge des recourants...",
87
+ }
88
+ ```
89
+
90
+ ### Data Fields
91
+
92
+ ```
93
+ decision_id: (str) a unique identifier of the for the document
94
+ language: (str) one of (de, fr, it)
95
+ year: (int) the publication year
96
+ chamber: (str) the chamber of the case
97
+ region: (str) the region of the case
98
+ origin_chamber: (str) the chamber of the origin case
99
+ origin_court: (str) the court of the origin case
100
+ origin_canton: (str) the canton of the origin case
101
+ law_area: (str) the law area of the case
102
+ law_sub_area:(str) the law sub area of the case
103
+ bge_label: (str) critical or non-critical
104
+ citation_label: (str) critical-1, critical-2, critical-3, critical-4, non-critical
105
+ facts: (str) the facts of the case
106
+ considerations: (str) the considerations of the case
107
+ rulings: (str) the rulings of the case
108
+ ```
109
+
110
+ ### Data Instances
111
+ [More Information Needed]
112
+ ### Data Fields
113
+ [More Information Needed]
114
+ ### Data Splits
115
+
116
+ The dataset was not split.
117
+
118
+ | Language | Subset | Number of Documents |
119
+ |------------|------------|----------------------|
120
+ | German | **de** | 14K |
121
+ | French | **fr** | 6K |
122
+ | Italian | **it** | 1K |
123
+
124
+ ## Dataset Creation
125
+ ### Curation Rationale
126
+
127
+ The dataset was created by Stern (2023).
128
+
129
+ ### Source Data
130
+ #### Initial Data Collection and Normalization
131
+
132
+ 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.
133
+
134
+ #### Who are the source language producers?
135
+
136
+ The decisions are written by the judges and clerks in the language of the proceedings.
137
+
138
+ ### Annotations
139
+ #### Annotation process
140
+
141
+
142
+ #### Who are the annotators?
143
+
144
+ Stern processed data and introduced bge and citation-label
145
+ Metadata is published by the Swiss Federal Supreme Court (https://www.bger.ch).
146
+
147
+ ### Personal and Sensitive Information
148
+
149
+ 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.
150
+
151
+ ## Considerations for Using the Data
152
+ ### Social Impact of Dataset
153
+ [More Information Needed]
154
+ ### Discussion of Biases
155
+ [More Information Needed]
156
+ ### Other Known Limitations
157
+ [More Information Needed]
158
+ ## Additional Information
159
+ ### Dataset Curators
160
+ [More Information Needed]
161
+ ### Licensing Information
162
+
163
+ 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)
164
+ © Swiss Federal Supreme Court, 2002-2022
165
+
166
+ 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.
167
+ Source: https://www.bger.ch/files/live/sites/bger/files/pdf/de/urteilsveroeffentlichung_d.pdf
168
+
169
+ ### Citation Information
170
+
171
+ *Visu, Ronja, Joel*
172
+ *Title: Blabliblablu*
173
+ *Name of conference*
174
+ ```
175
+ cit
176
+ ```
177
+
178
+ ### Contributions
179
+
180
+ Thanks to [@Stern5497](https://github.com/stern5497) for adding this dataset.