Dataset Organization
The DEG dataset is organized by subsets (single, multiple, delete) and context length. Each subset has multiple subsets corresponding to different context lengths.
Instructions to Download
You can load a dataset using HF's API, with an example below.
from datasets import load_dataset
deg_data = load_dataset("wanglab/deg", 'single_256')
# Access the train data for a specific context length
train_data = deg_data['train']
- Downloads last month
- 29