Stern5497 commited on
Commit
b5940af
1 Parent(s): 97f3dd3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -34
README.md CHANGED
@@ -67,44 +67,34 @@ Switzerland has four official languages with three languages German, French and
67
 
68
  ## Dataset Structure
69
 
70
- ```
71
- {
72
- "decision_id": "008d8a52-f0ea-4820-a18c-d06066dbb407",
73
- "language": "fr",
74
- "year": "2018",
75
- "chamber": "CH_BGer_004",
76
- "region": "Federation",
77
- "origin_chamber": "338.0",
78
- "origin_court": "127.0",
79
- "origin_canton": "24.0",
80
- "law_area": "civil_law",
81
- "law_sub_area": ,
82
- "bge_label": "critical",
83
- "citation_label": "critical-1",
84
- "facts": "Faits : A. A.a. Le 17 août 2007, C.X._, née le 14 février 1944 et domiciliée...",
85
- "considerations": "Considérant en droit : 1. Interjeté en temps utile (art. 100 al. 1 LTF) par les défendeurs qui ont succombé dans leurs conclusions (art. 76 LTF) contre une décision...",
86
- "rulings": "Par ces motifs, le Tribunal fédéral prononce : 1. Le recours est rejeté. 2. Les frais judiciaires, arrêtés à 10'000 fr., sont mis solidairement à la charge des recourants...",
87
- }
88
- ```
89
-
90
  ### Data Fields
91
 
92
  ```
93
  decision_id: (str) a unique identifier of the for the document
94
- language: (str) one of (de, fr, it)
95
- year: (int) the publication year
96
- chamber: (str) the chamber of the case
97
- region: (str) the region of the case
98
- origin_chamber: (str) the chamber of the origin case
99
- origin_court: (str) the court of the origin case
100
- origin_canton: (str) the canton of the origin case
101
- law_area: (str) the law area of the case
102
- law_sub_area:(str) the law sub area of the case
103
- bge_label: (str) critical or non-critical
104
- citation_label: (str) critical-1, critical-2, critical-3, critical-4, non-critical
105
- facts: (str) the facts of the case
106
- considerations: (str) the considerations of the case
107
- rulings: (str) the rulings of the case
 
 
 
 
 
 
 
 
 
 
108
  ```
109
 
110
  ### Data Instances
 
67
 
68
  ## Dataset Structure
69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  ### Data Fields
71
 
72
  ```
73
  decision_id: (str) a unique identifier of the for the document
74
+ language: (int64) one of (0,1,2)
75
+ chamber_id: (int64) id to identfy chamber
76
+ file_id: (int64) id to identify file
77
+ date: (int64)
78
+ topic: (string)
79
+ year: (float64)
80
+ language: (string)
81
+ facts: (string) text section of the full text
82
+ facts_num_tokens_bert: (int64)
83
+ facts_num_tokens_spacy: (int64)
84
+ considerations: (string) text section of the full text
85
+ considerations_num_tokens_bert: (int64)
86
+ considerations_num_tokens_spacy: (int64)
87
+ rulings: (string) text section of the full text
88
+ rulings_num_tokens_bert: (int64)
89
+ rulings_num_tokens_spacy: (int64)
90
+ chamber (string):
91
+ court: (string)
92
+ canton: (string)
93
+ region: (string)
94
+ file_name: (string)
95
+ html_url: (string)
96
+ pdf_url: (string)
97
+ file_number: (string)
98
  ```
99
 
100
  ### Data Instances