Tonic commited on
Commit
6844517
·
verified ·
1 Parent(s): 32eb619

Update README.md

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