File size: 1,094 Bytes
b16437e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
---
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.
|