Create README
Browse files
README
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "Enron Email"
|
| 3 |
+
license: "apache-2.0"
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- email
|
| 8 |
+
- text
|
| 9 |
+
- privacy
|
| 10 |
+
task_categories:
|
| 11 |
+
- text-generation
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# Enron Email
|
| 15 |
+
|
| 16 |
+
This repository hosts a copy of the **Enron Email** dataset variant published on Hugging Face,
|
| 17 |
+
which includes emails from the Enron Email Dataset with additional prompt formatting used in privacy / memorization research.
|
| 18 |
+
|
| 19 |
+
It is often used to study privacy leakage, memorization, and handling of personally identifiable information (PII) in language models.
|
| 20 |
+
|
| 21 |
+
## Contents
|
| 22 |
+
Files and splits may vary; typical content includes email text plus associated metadata fields (e.g., subject, recipients, body).
|
| 23 |
+
|
| 24 |
+
A simplified entry conceptually looks like:
|
| 25 |
+
```json
|
| 26 |
+
{
|
| 27 |
+
"text": "..."
|
| 28 |
+
}
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
## Usage
|
| 32 |
+
```python
|
| 33 |
+
from datasets import load_dataset
|
| 34 |
+
ds = load_dataset("LLM-PBE/enron-email")
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Source
|
| 38 |
+
This dataset is taken from the Hugging Face dataset repository:
|
| 39 |
+
https://huggingface.co/datasets/LLM-PBE/enron-email
|
| 40 |
+
|
| 41 |
+
## License
|
| 42 |
+
The dataset card lists the license as **Apache-2.0**.
|
| 43 |
+
See the LICENSE file (or the dataset card) for more details.
|