GilSemoDarrow commited on
Commit
02f60b6
1 Parent(s): a953b8a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -4
README.md CHANGED
@@ -11,12 +11,39 @@ license: gpl-3.0
11
 
12
  ### Dataset Summary
13
 
14
- **Documents**
15
-
16
- USClassActions is an English dataset of 3K US Federal Court cases annotated with the respective binarized judgment outcome (Win/Lose), posing a challenging text classification task. We are happy to share this dataset in order to promote robustness and fairness studies on the critical area of legal NLP.
17
 
18
  ### Data Instances
19
  ```python
20
  from datasets import load_dataset
21
- dataset = load_dataset('darrow-ai/USClassActions',split='train')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ```
 
11
 
12
  ### Dataset Summary
13
 
14
+ USClassActions is an English dataset of 3K complaints from the US Federal Court with the respective binarized judgment outcome (Win/Lose). The dataset poses a challenging text classification task. We are happy to share this dataset in order to promote robustness and fairness studies on the critical area of legal NLP.USClassActions is an English dataset of 3K US Federal Court complaints annotated with the respective binarized judgment outcome (Win/Lose), posing a challenging text classification task. We are happy to share this dataset in order to promote robustness and fairness studies on the critical area of legal NLP.
 
 
15
 
16
  ### Data Instances
17
  ```python
18
  from datasets import load_dataset
19
+ dataset = load_dataset('darrow-ai/USClassActions')
20
+ ```
21
+ ### Data Fields
22
+ `id`: (**int**) a unique identifier of the document \
23
+ `target_text`: (**str**) the complaint text \
24
+ `verdict`: (**str**) the outcome of the case \
25
+ `target_text`: (**str**) the facts of the case \
26
+
27
+ ### Curation Rationale
28
+
29
+ The dataset was curated by Darrow.ai (2022).
30
+
31
+ ### Citation Information
32
+
33
+ *Gil Semo, Dor Bernsohn, Ben Hagag, Gila Hayat, and Joel Niklaus*
34
+ *ClassActionPrediction: A Challenging Benchmark for Legal Judgment Prediction of Class Action Cases in the US*
35
+ *Proceedings of the 2022 Natural Legal Language Processing Workshop. Abu Dhabi. 2022*
36
+ ```
37
+ @InProceedings{darrow-niklaus-2022-uscp,
38
+ author = {Semo, Gil
39
+ and Bernsohn, Dor
40
+ and Stürmer, Matthias
41
+ and Hagag, Ben
42
+ and Hayat, Gila
43
+ and Niklaus, Joel},
44
+ title = {ClassActionPrediction: A Challenging Benchmark for Legal Judgment Prediction of Class Action Cases in the US},
45
+ booktitle = {Proceedings of the 2022 Natural Legal Language Processing Workshop},
46
+ year = {2022},
47
+ location = {Abu Dhabi},
48
+ }
49
  ```