File size: 4,996 Bytes
0329eda
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
---
language:
- fr
license: mit
pretty_name: French Court Decisions Dataset (INCA)
size_categories:
- n>1M
source_datasets: []
task_categories:
- text-classification
- text-generation
task_ids:
- document-retrieval
- document-question-answering
tags:
- legal
- french-law
- court-decisions
- 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: solution
      dtype: string
    - name: numero_affaire
      dtype: string
    - name: publie_bulletin
      dtype: string
    - name: formation
      dtype: string
    - name: date_decision_attaquee
      dtype: string
    - name: juridiction_attaquee
      dtype: string
    - name: siege_appel
      dtype: string
    - name: juridiction_premiere_instance
      dtype: string
    - name: lieu_premiere_instance
      dtype: string
    - name: demandeur
      dtype: string
    - name: defendeur
      dtype: string
    - name: president
      dtype: string
    - name: avocat_general
      dtype: string
    - name: avocats
      dtype: string
    - name: rapporteur
      dtype: string
    - name: ecli
      dtype: string
    - name: contenu
      dtype: string
    - name: sommaire
      dtype: string
---

# French Court Decisions Dataset (INCA)

## Dataset Description

The French Court Decisions Dataset (INCA) is a comprehensive collection of judicial decisions from various French courts. This dataset contains decisions from multiple jurisdictions, providing a broad perspective on French jurisprudence and representing an essential resource for legal research, analysis, and machine learning applications in the French 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/INCA/

## 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
- **solution**: Decision outcome
- **numero_affaire**: Case reference number
- **publie_bulletin**: Publication status in official bulletin
- **formation**: Court chamber/formation
- **date_decision_attaquee**: Date of the challenged decision
- **juridiction_attaquee**: Court whose decision is being challenged
- **siege_appel**: Location of the Appeal Court
- **juridiction_premiere_instance**: First instance court
- **lieu_premiere_instance**: Location of first instance court
- **demandeur**: Plaintiff information
- **defendeur**: Defendant information
- **president**: Presiding judge
- **avocat_general**: Attorney General
- **avocats**: Lawyers involved
- **rapporteur**: Reporting judge
- **ecli**: European Case Law Identifier
- **contenu**: Full text content of the decision
- **sommaire**: Summary 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/french-court-decisions-inca")
```

## Data Processing

The dataset was created through the following steps:
1. Downloading compressed archives from DILA's open data platform
2. Extracting and parsing XML files containing court decisions
3. Cleaning and structuring the data into a consistent format
4. Converting the data into JSONL format for efficient processing

## Applications

This dataset is suitable for various applications, including:
- Legal document retrieval systems
- Case law analysis
- Legal precedent research
- Machine learning models for legal text classification
- Legal question answering systems
- Legal text summarization
- Jurisprudential analysis across different French courts

## Citation

If you use this dataset in your research, please cite:

```
@dataset{french_court_decisions_inca,
  author = {DILA},
  title = {French Court Decisions Dataset (INCA)},
  year = {2023},
  publisher = {Direction de l'Information Légale et Administrative},
  url = {https://echanges.dila.gouv.fr/OPENDATA/INCA/}
}
```

## License

This dataset is released under the MIT License. Please refer to the license file for more details.

## Acknowledgments

Thanks to DILA (Direction de l'Information Légale et Administrative) for making this data publicly available through their open data initiative.