PCR-ToxiCN is a 500-example Chinese dataset for testing how well models spot offensive language hidden by phonetic cloaking (homophones and near-homophones).
| Field | Type | Notes |
|---|---|---|
| text | string | Original Xiaohongshu comment |
| offensive_label | int | 1 = offensive, 0 = non-offensive (250 / 250) |
| strategy | string | HR, AR, NR, or MR |
| Strategy | What it is | Example |
|---|---|---|
| HR | Hanzi replacement | “沸物” → “废物” |
| AR | Alphabet / pinyin | “SB” → “傻逼” |
| NR | Numerals as sounds | “4” (sì) → “死” |
| MR | Mixed tricks | “4万” → “死完” |
from datasets import load_dataset
ds = load_dataset("UTSNLPGroup/PCR-ToxiCN", split="full")
Code on GitHub: HTG13503/PCR-ToxiCN
Haotan Guo, Jianfei He, Jiayuan Ma, Hongbin Na, Zimu Wang, Haiyang Zhang, Qi Chen, Wei Wang, Zijing Shi, Tao Shen, Ling Chen
@article{guo2025lost,
title={Lost in Pronunciation: Detecting Chinese Offensive Language Disguised by Phonetic Cloaking Replacement},
author={Guo, Haotan and He, Jianfei and Ma, Jiayuan and Na, Hongbin and Wang, Zimu and Zhang, Haiyang and Chen, Qi and Wang, Wei and Shi, Zijing and Shen, Tao and Chen, Ling},
journal={arXiv preprint arXiv:2507.07640},
year={2025},
url={https://arxiv.org/abs/2507.07640}
}
10 commits
PCR-ToxiCN is a 500-example Chinese dataset for testing how well models spot offensive language hidden by phonetic cloaking (homophones and near-homophones).
| Field | Type | Notes |
|---|---|---|
| text | string | Original Xiaohongshu comment |
| offensive_label | int | 1 = offensive, 0 = non-offensive (250 / 250) |
| strategy | string | HR, AR, NR, or MR |
| Strategy | What it is | Example |
|---|---|---|
| HR | Hanzi replacement | “沸物” → “废物” |
| AR | Alphabet / pinyin | “SB” → “傻逼” |
| NR | Numerals as sounds | “4” (sì) → “死” |
| MR | Mixed tricks | “4万” → “死完” |
from datasets import load_dataset
ds = load_dataset("UTSNLPGroup/PCR-ToxiCN", split="full")
Code on GitHub: HTG13503/PCR-ToxiCN
Haotan Guo, Jianfei He, Jiayuan Ma, Hongbin Na, Zimu Wang, Haiyang Zhang, Qi Chen, Wei Wang, Zijing Shi, Tao Shen, Ling Chen
@article{guo2025lost,
title={Lost in Pronunciation: Detecting Chinese Offensive Language Disguised by Phonetic Cloaking Replacement},
author={Guo, Haotan and He, Jianfei and Ma, Jiayuan and Na, Hongbin and Wang, Zimu and Zhang, Haiyang and Chen, Qi and Wang, Wei and Shi, Zijing and Shen, Tao and Chen, Ling},
journal={arXiv preprint arXiv:2507.07640},
year={2025},
url={https://arxiv.org/abs/2507.07640}
}
10 commits