Datasets:

enron / README
JoyCountMost's picture
Create README
b16437e verified
---
pretty_name: "Enron Email"
license: "apache-2.0"
language:
- en
tags:
- email
- text
- privacy
task_categories:
- text-generation
---
# Enron Email
This repository hosts a copy of the **Enron Email** dataset variant published on Hugging Face,
which includes emails from the Enron Email Dataset with additional prompt formatting used in privacy / memorization research.
It is often used to study privacy leakage, memorization, and handling of personally identifiable information (PII) in language models.
## Contents
Files and splits may vary; typical content includes email text plus associated metadata fields (e.g., subject, recipients, body).
A simplified entry conceptually looks like:
```json
{
"text": "..."
}
```
## Usage
```python
from datasets import load_dataset
ds = load_dataset("LLM-PBE/enron-email")
```
## Source
This dataset is taken from the Hugging Face dataset repository:
https://huggingface.co/datasets/LLM-PBE/enron-email
## License
The dataset card lists the license as **Apache-2.0**.
See the LICENSE file (or the dataset card) for more details.