dkoplow/ZKL-tofu
收藏Hugging Face2026-04-08 更新2026-04-12 收录
下载链接:
https://hf-mirror.com/datasets/dkoplow/ZKL-tofu
下载链接
链接失效反馈官方服务:
资源简介:
---
pretty_name: ZKL TOFU (parquet)
tags:
- rlhf
- tofu
- selective-erasure
---
# ZKL TOFU (parquet)
Derived from the [TOFU](https://huggingface.co/datasets/locuslab/TOFU) dataset.
Each source example yields a **positive** record (question + correct answer) and a
**negative** record (question + randomly sampled other answer).
You must comply with the licenses and terms of the upstream dataset.
## Layout
- `original/data/original.parquet`
- `train/data/train.parquet`
## Columns
- `dataset`: always `"tofu"`
- `prompt`: chat list of `{"role", "content"}` dicts
- `label`: `"positive"` or `"negative"`
- `id`: stable string id
## Load with `datasets`
```python
from datasets import load_dataset
repo = "dkoplow/ZKL-tofu"
train = load_dataset(
"parquet",
data_files=f"hf://datasets/{repo}/train/data/train.parquet",
split="train",
)
```
提供机构:
dkoplow



