Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
json
Sub-tasks:
closed-domain-qa
Languages:
English
Size:
10K - 100K
ArXiv:
License:
annotations_creators: | |
- machine-generated | |
language: | |
- en | |
language_creators: | |
- machine-generated | |
license: mit | |
multilinguality: | |
- monolingual | |
pretty_name: TOFU | |
size_categories: | |
- 1K<n<10K | |
source_datasets: | |
- original | |
tags: | |
- unlearning | |
- question answering | |
- TOFU | |
- NLP | |
- LLM | |
task_categories: | |
- question-answering | |
task_ids: | |
- closed-domain-qa | |
configs: | |
- config_name: full | |
data_files: full.json | |
default: true | |
- config_name: forget01 | |
data_files: forget01.json | |
- config_name: forget05 | |
data_files: forget05.json | |
- config_name: forget10 | |
data_files: forget10.json | |
- config_name: retain90 | |
data_files: retain90.json | |
- config_name: retain95 | |
data_files: retain95.json | |
- config_name: retain99 | |
data_files: retain99.json | |
- config_name: world_facts | |
data_files: world_facts.json | |
- config_name: real_authors | |
data_files: real_authors.json | |
- config_name: forget01_perturbed | |
data_files: forget01_perturbed.json | |
- config_name: forget05_perturbed | |
data_files: forget05_perturbed.json | |
- config_name: forget10_perturbed | |
data_files: forget10_perturbed.json | |
- config_name: retain_perturbed | |
data_files: retain_perturbed.json | |
- config_name: world_facts_perturbed | |
data_files: world_facts_perturbed.json | |
- config_name: real_authors_perturbed | |
data_files: real_authors_perturbed.json | |
# TOFU: Task of Fictitious Unlearning 🍢 | |
The TOFU dataset serves as a benchmark for evaluating unlearning performance of large language models on realistic tasks. The dataset comprises question-answer pairs based on autobiographies of 200 different authors that do not exist and are completely fictitiously generated by the GPT-4 model. The goal of the task is to unlearn a fine-tuned model on various fractions of the forget set. | |
## Quick Links | |
- [**Website**](https://locuslab.github.io/tofu): The landing page for TOFU | |
- [**arXiv Paper**](http://arxiv.org/abs/2401.06121): Detailed information about the TOFU dataset and its significance in unlearning tasks. | |
- [**GitHub Repository**](https://github.com/locuslab/tofu): Access the source code, fine-tuning scripts, and additional resources for the TOFU dataset. | |
- [**Dataset on Hugging Face**](https://huggingface.co/datasets/locuslab/TOFU): Direct link to download the TOFU dataset. | |
- [**Leaderboard on Hugging Face Spaces**](https://huggingface.co/spaces/locuslab/tofu_leaderboard): Current rankings and submissions for the TOFU dataset challenges. | |
- [**Summary on Twitter**](https://x.com/_akhaliq/status/1745643293839327268): A concise summary and key takeaways from the project. | |
## Applicability 🚀 | |
The dataset is in QA format, making it ideal for use with popular chat models such as Llama2, Mistral, or Qwen. However, it also works for any other large language model. The corresponding code base is written for the Llama2 chat, and Phi-1.5 models, but can be easily adapted to other models. | |
## Loading the Dataset | |
To load the dataset, use the following code: | |
```python | |
from datasets import load_dataset | |
dataset = load_dataset("locuslab/TOFU", "full") | |
``` | |
### Available forget sets are: | |
- `forget01`: Forgetting 1% of the original dataset, all entries correspond to a single author. | |
- `forget05`: Forgetting 5% of the original dataset, all entries correspond to a single author. | |
- `forget10`: Forgetting 10% of the original dataset, all entries correspond to a single author. | |
Retain sets corresponding to each forget set are also available, which can be used to train an Oracle model. | |
## Codebase | |
The code for training the models and the availability of all fine-tuned models can be found at our [GitHub repository](https://github.com/locuslab/tofu). | |
## Citing Our Work | |
If you find our codebase and dataset beneficial, please cite our work: | |
``` | |
@misc{tofu2024, | |
title={TOFU: A Task of Fictitious Unlearning for LLMs}, | |
author={Pratyush Maini and Zhili Feng and Avi Schwarzschild and Zachary C. Lipton and J. Zico Kolter}, | |
year={2024}, | |
archivePrefix={arXiv}, | |
primaryClass={cs.LG} | |
} | |
``` |