Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,97 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- fr
|
4 |
+
license: mit
|
5 |
+
pretty_name: French Administrative Court Decisions (JADE)
|
6 |
+
size_categories:
|
7 |
+
- n>1M
|
8 |
+
source_datasets: []
|
9 |
+
task_categories:
|
10 |
+
- text-classification
|
11 |
+
- text-generation
|
12 |
+
task_ids:
|
13 |
+
- legal-document-classification
|
14 |
+
- legal-text-generation
|
15 |
+
tags:
|
16 |
+
- legal
|
17 |
+
- french-law
|
18 |
+
- administrative-court
|
19 |
+
- judicial-decisions
|
20 |
+
dataset_info:
|
21 |
+
features:
|
22 |
+
- name: id
|
23 |
+
dtype: string
|
24 |
+
- name: ancien_id
|
25 |
+
dtype: string
|
26 |
+
- name: origine
|
27 |
+
dtype: string
|
28 |
+
- name: url
|
29 |
+
dtype: string
|
30 |
+
- name: nature
|
31 |
+
dtype: string
|
32 |
+
- name: titre
|
33 |
+
dtype: string
|
34 |
+
- name: date_decision
|
35 |
+
dtype: string
|
36 |
+
- name: juridiction
|
37 |
+
dtype: string
|
38 |
+
- name: numero
|
39 |
+
dtype: string
|
40 |
+
- name: formation
|
41 |
+
dtype: string
|
42 |
+
- name: type_recours
|
43 |
+
dtype: string
|
44 |
+
- name: publication_recueil
|
45 |
+
dtype: string
|
46 |
+
- name: president
|
47 |
+
dtype: string
|
48 |
+
- name: avocats
|
49 |
+
dtype: string
|
50 |
+
- name: rapporteur
|
51 |
+
dtype: string
|
52 |
+
- name: commissaire_gouvernement
|
53 |
+
dtype: string
|
54 |
+
- name: contenu
|
55 |
+
dtype: string
|
56 |
+
---
|
57 |
+
|
58 |
+
# French Administrative Court Decisions Dataset (JADE)
|
59 |
+
|
60 |
+
## Dataset Description
|
61 |
+
|
62 |
+
The French Administrative Court Decisions Dataset (JADE) is a comprehensive collection of judicial decisions from French administrative courts. This dataset contains decisions from various administrative jurisdictions, providing a valuable resource for legal research, analysis, and machine learning applications in the legal domain.
|
63 |
+
|
64 |
+
### Source Data
|
65 |
+
|
66 |
+
The data is sourced from the official DILA (Direction de l'Information Légale et Administrative) platform through their open data initiative. The original data is available at: https://echanges.dila.gouv.fr/OPENDATA/JADE/
|
67 |
+
|
68 |
+
## Content Description
|
69 |
+
|
70 |
+
Each entry in the dataset represents a single judicial decision and includes the following information:
|
71 |
+
|
72 |
+
- **id**: Unique identifier for the decision
|
73 |
+
- **ancien_id**: Previous identifier (if applicable)
|
74 |
+
- **origine**: Origin of the decision
|
75 |
+
- **url**: URL to the source document
|
76 |
+
- **nature**: Nature of the document
|
77 |
+
- **titre**: Title of the decision
|
78 |
+
- **date_decision**: Date when the decision was made
|
79 |
+
- **juridiction**: Court that made the decision
|
80 |
+
- **numero**: Case number
|
81 |
+
- **formation**: Court formation
|
82 |
+
- **type_recours**: Type of appeal
|
83 |
+
- **publication_recueil**: Publication details
|
84 |
+
- **president**: Presiding judge
|
85 |
+
- **avocats**: Lawyers involved
|
86 |
+
- **rapporteur**: Reporting judge
|
87 |
+
- **commissaire_gouvernement**: Government commissioner
|
88 |
+
- **contenu**: Full text content of the decision
|
89 |
+
|
90 |
+
## Usage
|
91 |
+
|
92 |
+
This dataset can be loaded using the Hugging Face datasets library:
|
93 |
+
|
94 |
+
```python
|
95 |
+
from datasets import load_dataset
|
96 |
+
|
97 |
+
dataset = load_dataset("username/dataset-name")
|