Datasets:
Commit ·
9e40670
1
Parent(s): 8c633f0
Add task categories and link to paper (#1)
Browse files- Add task categories and link to paper (5910e1e52a2b5cded9a131b7506f7dfab217d88d)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: instruction
|
|
@@ -21,3 +24,31 @@ configs:
|
|
| 21 |
- split: train
|
| 22 |
path: data/train-*
|
| 23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- text-generation
|
| 4 |
+
- text-classification
|
| 5 |
dataset_info:
|
| 6 |
features:
|
| 7 |
- name: instruction
|
|
|
|
| 24 |
- split: train
|
| 25 |
path: data/train-*
|
| 26 |
---
|
| 27 |
+
|
| 28 |
+
# ThinkSafe Dataset
|
| 29 |
+
|
| 30 |
+
This dataset is associated with the paper [THINKSAFE: Self-Generated Safety Alignment for Reasoning Models](https://huggingface.co/papers/2601.23143).
|
| 31 |
+
|
| 32 |
+
**Paper:** https://arxiv.org/abs/2601.23143
|
| 33 |
+
**GitHub:** https://github.com/seanie12/ThinkSafe.git
|
| 34 |
+
|
| 35 |
+
## Dataset Description
|
| 36 |
+
|
| 37 |
+
This dataset contains 39,787 training examples with instructions and responses, labeled for safety alignment. Each example includes:
|
| 38 |
+
- `instruction`: The input instruction
|
| 39 |
+
- `response`: The generated response
|
| 40 |
+
- `prompt_label`: Safety label for the prompt
|
| 41 |
+
- `response_label`: Safety label for the response
|
| 42 |
+
|
| 43 |
+
## Citation
|
| 44 |
+
|
| 45 |
+
If you use this dataset, please cite:
|
| 46 |
+
|
| 47 |
+
```bibtex
|
| 48 |
+
@article{lee2025thinksafe,
|
| 49 |
+
title={THINKSAFE: Self-Generated Safety Alignment for Reasoning Models},
|
| 50 |
+
author={Lee, Seanie and others},
|
| 51 |
+
journal={arXiv preprint arXiv:2601.23143},
|
| 52 |
+
year={2025}
|
| 53 |
+
}
|
| 54 |
+
```
|