antoinelouis
commited on
Commit
•
914d641
1
Parent(s):
77522d0
Update README.md
Browse files
README.md
CHANGED
@@ -3,7 +3,6 @@ annotations_creators:
|
|
3 |
- expert-generated
|
4 |
language_creators:
|
5 |
- found
|
6 |
-
- other
|
7 |
languages:
|
8 |
- fr-BE
|
9 |
licenses:
|
@@ -51,8 +50,8 @@ task_ids:
|
|
51 |
## Dataset Description
|
52 |
|
53 |
- **Repository:** [https://github.com/maastrichtlawtech/bsard](https://github.com/maastrichtlawtech/bsard)
|
54 |
-
- **Paper:** [
|
55 |
-
- **Point of Contact:** [
|
56 |
|
57 |
### Dataset Summary
|
58 |
|
@@ -74,31 +73,33 @@ A typical data point comprises a question, with additional `category`, `subcateg
|
|
74 |
|
75 |
An example from the BSARD test set looks as follows:
|
76 |
```
|
77 |
-
{
|
|
|
78 |
'question': 'La police peut-elle me fouiller pour chercher du cannabis ?',
|
79 |
'category': 'Justice',
|
80 |
'subcategory': 'Petite délinquance',
|
81 |
'extra_description': 'Détenir, acheter et vendre du cannabis',
|
82 |
-
'article_ids': '13348'
|
|
|
83 |
```
|
84 |
|
85 |
### Data Fields
|
86 |
|
87 |
-
- In
|
88 |
-
- `id`:
|
89 |
-
- `question`: a
|
90 |
-
- `category`: a
|
91 |
-
- `subcategory`: a
|
92 |
-
- `extra_description`: a
|
93 |
-
- `article_ids`: a
|
94 |
-
|
95 |
-
- In
|
96 |
-
- `id`:
|
97 |
-
- `article`: a
|
98 |
-
- `code`: a
|
99 |
-
- `article_no`: a
|
100 |
-
- `description`: a
|
101 |
-
- `law_type`: a
|
102 |
|
103 |
### Data Splits
|
104 |
|
@@ -112,31 +113,31 @@ This dataset is split into train/test set. Number of questions in each set is gi
|
|
112 |
|
113 |
### Curation Rationale
|
114 |
|
115 |
-
|
116 |
|
117 |
### Source Data
|
118 |
|
119 |
#### Initial Data Collection and Normalization
|
120 |
|
121 |
-
|
122 |
|
123 |
#### Who are the source language producers?
|
124 |
|
125 |
-
[
|
126 |
|
127 |
### Annotations
|
128 |
|
129 |
#### Annotation process
|
130 |
|
131 |
-
[
|
132 |
|
133 |
#### Who are the annotators?
|
134 |
|
135 |
-
[
|
136 |
|
137 |
### Personal and Sensitive Information
|
138 |
|
139 |
-
|
140 |
|
141 |
## Considerations for Using the Data
|
142 |
|
@@ -162,10 +163,11 @@ The dataset was created by Antoine Louis during work done at the Law & Tech lab
|
|
162 |
|
163 |
### Licensing Information
|
164 |
|
165 |
-
BSARD is licensed under the [
|
166 |
|
167 |
### Citation Information
|
168 |
|
|
|
169 |
@inproceedings{louis2021statutory,
|
170 |
author = {Antoine Louis and
|
171 |
Gerasimos Spanakis},
|
@@ -182,4 +184,4 @@ BSARD is licensed under the [Creative Commons Attribution 4.0 (CC BY-NC-SA 4.0)
|
|
182 |
|
183 |
### Contributions
|
184 |
|
185 |
-
Thanks to [@antoiloui](https://github.com/antoiloui) for adding this dataset.
|
|
|
3 |
- expert-generated
|
4 |
language_creators:
|
5 |
- found
|
|
|
6 |
languages:
|
7 |
- fr-BE
|
8 |
licenses:
|
|
|
50 |
## Dataset Description
|
51 |
|
52 |
- **Repository:** [https://github.com/maastrichtlawtech/bsard](https://github.com/maastrichtlawtech/bsard)
|
53 |
+
- **Paper:** [A Statutory Article Retrieval Dataset in French](https://arxiv.org/abs/2108.11792)
|
54 |
+
- **Point of Contact:** [Maastricht Law & Tech Lab](law-techlab@maastrichtuniversity.nl)
|
55 |
|
56 |
### Dataset Summary
|
57 |
|
|
|
73 |
|
74 |
An example from the BSARD test set looks as follows:
|
75 |
```
|
76 |
+
{
|
77 |
+
'id': '724',
|
78 |
'question': 'La police peut-elle me fouiller pour chercher du cannabis ?',
|
79 |
'category': 'Justice',
|
80 |
'subcategory': 'Petite délinquance',
|
81 |
'extra_description': 'Détenir, acheter et vendre du cannabis',
|
82 |
+
'article_ids': '13348'
|
83 |
+
}
|
84 |
```
|
85 |
|
86 |
### Data Fields
|
87 |
|
88 |
+
- In **"questions_fr_train.csv"** and **"questions_fr_test.csv"**:
|
89 |
+
- `id`: an *int32* feature corresponding to a unique ID number for the question.
|
90 |
+
- `question`: a *string* feature corresponding to the question.
|
91 |
+
- `category`: a *string* feature corresponding to the general topic of the question.
|
92 |
+
- `subcategory`: a *string* feature corresponding to the sub-topic of the question.
|
93 |
+
- `extra_description`: a *string* feature corresponding to the extra categorization tags of the question.
|
94 |
+
- `article_ids`: a *string* feature of comma-separated article IDs relevant to the question.
|
95 |
+
|
96 |
+
- In **"articles_fr.csv"**:
|
97 |
+
- `id`: an *int32* feature corresponding to a unique ID number for the article.
|
98 |
+
- `article`: a *string* feature corresponding to the full article.
|
99 |
+
- `code`: a *string* feature corresponding to the law code to which the article belongs.
|
100 |
+
- `article_no`: a *string* feature corresponding to the article number in the code.
|
101 |
+
- `description`: a *string* feature corresponding to the concatenated headings of the article.
|
102 |
+
- `law_type`: a *string* feature whose value is either *"regional"* or *"national"*.
|
103 |
|
104 |
### Data Splits
|
105 |
|
|
|
113 |
|
114 |
### Curation Rationale
|
115 |
|
116 |
+
The dataset is intended to be used by researchers to build and evaluate models on retrieving law articles relevant to an input legal question. It should not be regarded as a reliable source of legal information at this point in time, as both the questions and articles correspond to an outdated version of the Belgian law from May 2021 (time of dataset collection). In the latter case, the user is advised to consult daily updated official legal resources (e.g., the Belgian Official Gazette).
|
117 |
|
118 |
### Source Data
|
119 |
|
120 |
#### Initial Data Collection and Normalization
|
121 |
|
122 |
+
BSARD was created in four stages: (i) compiling a large corpus of Belgian law articles, (ii) gathering legal questions with references to relevant law articles, (iii) refining these questions, and (iv) matching the references to the corresponding articles from the corpus.
|
123 |
|
124 |
#### Who are the source language producers?
|
125 |
|
126 |
+
Speakers were not directly approached for inclusion in this dataset and thus could not be asked for demographic information. Questions were collected, anonimyzed, and reformulated by [Droits Quotidiens](https://www.droitsquotidiens.be/fr/equipe). Therefore, no direct information about the speakers’ age and gender distribution, or socioeconomic status is available. However, it is expected that most, but not all, of the speakers are adults (18+ years), speak French as a native language, and live in Wallonia or Brussels-Capital region.
|
127 |
|
128 |
### Annotations
|
129 |
|
130 |
#### Annotation process
|
131 |
|
132 |
+
Each year, [Droits Quotidiens](https://www.droitsquotidiens.be/fr/equipe), a Belgian organization whose mission is to clarify the law for laypeople, receives and collects around 4,000 emails from Belgian citizens asking for advice on a personal legal issue. In practice, their legal clarification process consists of four steps. First, they identify the most frequently asked questions on a common legal issue. Then, they define a new anonymized "model" question on that issue expressed in natural language terms, i.e., as close as possible as if a layperson had asked it. Next, they search the Belgian law for articles that help answer the model question and reference them.
|
133 |
|
134 |
#### Who are the annotators?
|
135 |
|
136 |
+
A total of six Belgian jurists from [Droits Quotidiens](https://www.droitsquotidiens.be/fr/equipe) contributed to annotating the questions. All have a law degree from a Belgian university and years of experience in providing legal advice and clarifications of the law. They range in age from 30-60 years, including one man and five women, gave their ethnicity as white European, speak French as a native language, and represent upper middle class based on income levels.
|
137 |
|
138 |
### Personal and Sensitive Information
|
139 |
|
140 |
+
The questions represent informal, asynchronous, edited, written language that does not exceed 265 words. None of them contained hateful, aggressive, or inappropriate language as they were all reviewed and reworded by Droits Quotidiens to be neutral, anonymous, and comprehensive. The legal articles represent strong, formal, written language that can contain up to 39,570 words.
|
141 |
|
142 |
## Considerations for Using the Data
|
143 |
|
|
|
163 |
|
164 |
### Licensing Information
|
165 |
|
166 |
+
BSARD is licensed under the [CC BY-NC-SA 4.0 license](https://creativecommons.org/licenses/by-nc-sa/4.0/).
|
167 |
|
168 |
### Citation Information
|
169 |
|
170 |
+
```
|
171 |
@inproceedings{louis2021statutory,
|
172 |
author = {Antoine Louis and
|
173 |
Gerasimos Spanakis},
|
|
|
184 |
|
185 |
### Contributions
|
186 |
|
187 |
+
Thanks to [@antoiloui](https://github.com/antoiloui) for adding this dataset.
|