Cleanlab/legal-ediscovery
Legal eDiscovery Dataset This dataset contains text data for legal eDiscovery classification tasks. Dataset Description The dataset includes: legal-ediscovery.csv - Main dataset legal-ediscovery-full.csv - Full version of the dataset Usage import pandas as pd from huggingface_hub import hf_hub_download # Download the dataset file_path = hf_hub_download( repo_id="Cleanlab/legal-ediscovery", filename="legal-ediscovery.csv"… See the full description on the dataset page: https://huggingface.co/datasets/Cleanlab/legal-ediscovery.
119
Legal eDiscovery Dataset
This dataset contains text data for legal eDiscovery classification tasks.
Dataset Description
The dataset includes:
legal-ediscovery.csv- Main datasetlegal-ediscovery-full.csv- Full version of the dataset
Usage
import pandas as pd
from huggingface_hub import hf_hub_download
# Download the dataset
file_path = hf_hub_download(
repo_id="Cleanlab/legal-ediscovery",
filename="legal-ediscovery.csv",
repo_type="dataset"
)
df = pd.read_csv(file_path)
print(df.head())License
MIT License
