concretejungles/toxigen-paraphrased
toxigen-paraphrased Paraphrased version of the ToxiGen (annotated) dataset. Each text has been paraphrased while preserving its original toxicity label. Model Paraphrases were generated using Qwen/Qwen3-30B-A3B-Instruct-2507. Original Dataset Source: skg/toxigen-data (annotated) Task: Toxicity Detection Classes: 2 (0 = non-toxic, 1 = toxic) Dataset Structure Split Examples train 7,168 validation 1,792 test 940… See the full description on the dataset page: https://huggingface.co/datasets/concretejungles/toxigen-paraphrased.
toxigen-paraphrased
Paraphrased version of the ToxiGen (annotated) dataset. Each text has been paraphrased while preserving its original toxicity label.
Model
Paraphrases were generated using [Qwen/Qwen3-30B-A3B-Instruct-2507](https://huggingface.co/Qwen/Qwen3-30B-A3B-Instruct-2507).
Original Dataset
- Source: skg/toxigen-data (annotated)
- Task: Toxicity Detection
- Classes: 2 (0 = non-toxic, 1 = toxic)
Dataset Structure
Columns
text(string): The paraphrased text.label(int): The original label, preserved from the source dataset.original_text(string): The original text before paraphrasing.
How to Use
from datasets import load_dataset
ds = load_dataset("concretejungles/toxigen-paraphrased")
print(ds["train"][0])Generation Details
- Paraphrase model:
Qwen/Qwen3-30B-A3B-Instruct-2507 - Method: Each example was paraphrased with a dataset-specific prompt designed to preserve the label semantics.
