Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
tags:
|
| 6 |
+
- text-classification
|
| 7 |
+
- legal
|
| 8 |
+
- ediscovery
|
| 9 |
+
- nlp
|
| 10 |
+
- data-centric-ai
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# Legal eDiscovery Dataset
|
| 14 |
+
|
| 15 |
+
This dataset contains text data for legal eDiscovery classification tasks.
|
| 16 |
+
|
| 17 |
+
## Dataset Description
|
| 18 |
+
|
| 19 |
+
The dataset includes:
|
| 20 |
+
- `legal-ediscovery.csv` - Main dataset
|
| 21 |
+
- `legal-ediscovery-full.csv` - Full version of the dataset
|
| 22 |
+
|
| 23 |
+
## Usage
|
| 24 |
+
|
| 25 |
+
```python
|
| 26 |
+
import pandas as pd
|
| 27 |
+
from huggingface_hub import hf_hub_download
|
| 28 |
+
|
| 29 |
+
# Download the dataset
|
| 30 |
+
file_path = hf_hub_download(
|
| 31 |
+
repo_id="Cleanlab/legal-ediscovery",
|
| 32 |
+
filename="legal-ediscovery.csv",
|
| 33 |
+
repo_type="dataset"
|
| 34 |
+
)
|
| 35 |
+
df = pd.read_csv(file_path)
|
| 36 |
+
print(df.head())
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## License
|
| 40 |
+
|
| 41 |
+
MIT License
|