| --- |
| pretty_name: "Enron Email" |
| license: "apache-2.0" |
| language: |
| - en |
| tags: |
| - email |
| - text |
| - privacy |
| task_categories: |
| - text-generation |
| --- |
| |
| |
|
|
| 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. |
|
|
| |
| 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": "..." |
| } |
| ``` |
|
|
| |
| ```python |
| from datasets import load_dataset |
| ds = load_dataset("LLM-PBE/enron-email") |
| ``` |
|
|
| |
| This dataset is taken from the Hugging Face dataset repository: |
| https://huggingface.co/datasets/LLM-PBE/enron-email |
|
|
| |
| The dataset card lists the license as **Apache-2.0**. |
| See the LICENSE file (or the dataset card) for more details. |
|
|