File size: 2,728 Bytes
d3117b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
---
language:
- fr
license: mit
pretty_name: French Administrative Court Decisions (JADE)
size_categories:
- n>1M
source_datasets: []
task_categories:
- text-classification
- text-generation
task_ids:
- legal-document-classification
- legal-text-generation
tags:
- legal
- french-law
- administrative-court
- judicial-decisions
dataset_info:
features:
- name: id
dtype: string
- name: ancien_id
dtype: string
- name: origine
dtype: string
- name: url
dtype: string
- name: nature
dtype: string
- name: titre
dtype: string
- name: date_decision
dtype: string
- name: juridiction
dtype: string
- name: numero
dtype: string
- name: formation
dtype: string
- name: type_recours
dtype: string
- name: publication_recueil
dtype: string
- name: president
dtype: string
- name: avocats
dtype: string
- name: rapporteur
dtype: string
- name: commissaire_gouvernement
dtype: string
- name: contenu
dtype: string
---
# French Administrative Court Decisions Dataset (JADE)
## Dataset Description
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.
### Source Data
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/
## Content Description
Each entry in the dataset represents a single judicial decision and includes the following information:
- **id**: Unique identifier for the decision
- **ancien_id**: Previous identifier (if applicable)
- **origine**: Origin of the decision
- **url**: URL to the source document
- **nature**: Nature of the document
- **titre**: Title of the decision
- **date_decision**: Date when the decision was made
- **juridiction**: Court that made the decision
- **numero**: Case number
- **formation**: Court formation
- **type_recours**: Type of appeal
- **publication_recueil**: Publication details
- **president**: Presiding judge
- **avocats**: Lawyers involved
- **rapporteur**: Reporting judge
- **commissaire_gouvernement**: Government commissioner
- **contenu**: Full text content of the decision
## Usage
This dataset can be loaded using the Hugging Face datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("username/dataset-name") |