TOFU-Cbin / README.md
an1118's picture
Upload 16 files
1811d71 verified
|
raw
history blame
No virus
3.98 kB
metadata
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

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:

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.

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}
}