Tonic commited on
Commit
0329eda
·
verified ·
1 Parent(s): 766fed3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +169 -3
README.md CHANGED
@@ -1,3 +1,169 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - fr
4
+ license: mit
5
+ pretty_name: French Court Decisions Dataset (INCA)
6
+ size_categories:
7
+ - n>1M
8
+ source_datasets: []
9
+ task_categories:
10
+ - text-classification
11
+ - text-generation
12
+ task_ids:
13
+ - document-retrieval
14
+ - document-question-answering
15
+ tags:
16
+ - legal
17
+ - french-law
18
+ - court-decisions
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: solution
41
+ dtype: string
42
+ - name: numero_affaire
43
+ dtype: string
44
+ - name: publie_bulletin
45
+ dtype: string
46
+ - name: formation
47
+ dtype: string
48
+ - name: date_decision_attaquee
49
+ dtype: string
50
+ - name: juridiction_attaquee
51
+ dtype: string
52
+ - name: siege_appel
53
+ dtype: string
54
+ - name: juridiction_premiere_instance
55
+ dtype: string
56
+ - name: lieu_premiere_instance
57
+ dtype: string
58
+ - name: demandeur
59
+ dtype: string
60
+ - name: defendeur
61
+ dtype: string
62
+ - name: president
63
+ dtype: string
64
+ - name: avocat_general
65
+ dtype: string
66
+ - name: avocats
67
+ dtype: string
68
+ - name: rapporteur
69
+ dtype: string
70
+ - name: ecli
71
+ dtype: string
72
+ - name: contenu
73
+ dtype: string
74
+ - name: sommaire
75
+ dtype: string
76
+ ---
77
+
78
+ # French Court Decisions Dataset (INCA)
79
+
80
+ ## Dataset Description
81
+
82
+ 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.
83
+
84
+ ### Source Data
85
+
86
+ 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/
87
+
88
+ ## Content Description
89
+
90
+ Each entry in the dataset represents a single judicial decision and includes the following information:
91
+
92
+ - **id**: Unique identifier for the decision
93
+ - **ancien_id**: Previous identifier (if applicable)
94
+ - **origine**: Origin of the decision
95
+ - **url**: URL to the source document
96
+ - **nature**: Nature of the document
97
+ - **titre**: Title of the decision
98
+ - **date_decision**: Date when the decision was made
99
+ - **juridiction**: Court that made the decision
100
+ - **numero**: Case number
101
+ - **solution**: Decision outcome
102
+ - **numero_affaire**: Case reference number
103
+ - **publie_bulletin**: Publication status in official bulletin
104
+ - **formation**: Court chamber/formation
105
+ - **date_decision_attaquee**: Date of the challenged decision
106
+ - **juridiction_attaquee**: Court whose decision is being challenged
107
+ - **siege_appel**: Location of the Appeal Court
108
+ - **juridiction_premiere_instance**: First instance court
109
+ - **lieu_premiere_instance**: Location of first instance court
110
+ - **demandeur**: Plaintiff information
111
+ - **defendeur**: Defendant information
112
+ - **president**: Presiding judge
113
+ - **avocat_general**: Attorney General
114
+ - **avocats**: Lawyers involved
115
+ - **rapporteur**: Reporting judge
116
+ - **ecli**: European Case Law Identifier
117
+ - **contenu**: Full text content of the decision
118
+ - **sommaire**: Summary of the decision
119
+
120
+ ## Usage
121
+
122
+ This dataset can be loaded using the Hugging Face datasets library:
123
+
124
+ ```python
125
+ from datasets import load_dataset
126
+
127
+ dataset = load_dataset("username/french-court-decisions-inca")
128
+ ```
129
+
130
+ ## Data Processing
131
+
132
+ The dataset was created through the following steps:
133
+ 1. Downloading compressed archives from DILA's open data platform
134
+ 2. Extracting and parsing XML files containing court decisions
135
+ 3. Cleaning and structuring the data into a consistent format
136
+ 4. Converting the data into JSONL format for efficient processing
137
+
138
+ ## Applications
139
+
140
+ This dataset is suitable for various applications, including:
141
+ - Legal document retrieval systems
142
+ - Case law analysis
143
+ - Legal precedent research
144
+ - Machine learning models for legal text classification
145
+ - Legal question answering systems
146
+ - Legal text summarization
147
+ - Jurisprudential analysis across different French courts
148
+
149
+ ## Citation
150
+
151
+ If you use this dataset in your research, please cite:
152
+
153
+ ```
154
+ @dataset{french_court_decisions_inca,
155
+ author = {DILA},
156
+ title = {French Court Decisions Dataset (INCA)},
157
+ year = {2023},
158
+ publisher = {Direction de l'Information Légale et Administrative},
159
+ url = {https://echanges.dila.gouv.fr/OPENDATA/INCA/}
160
+ }
161
+ ```
162
+
163
+ ## License
164
+
165
+ This dataset is released under the MIT License. Please refer to the license file for more details.
166
+
167
+ ## Acknowledgments
168
+
169
+ Thanks to DILA (Direction de l'Information Légale et Administrative) for making this data publicly available through their open data initiative.