Commit
·
a953b8a
1
Parent(s):
d2d9c84
Update README.md
Browse files
README.md
CHANGED
@@ -13,4 +13,10 @@ license: gpl-3.0
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
```
|