coercion
收藏资源简介:
该数据集名为 'Pressure-Coerced Self-Contradiction — mmlu',基于 mmlu 来源,使用 `gpt-5.1` 模型生成,旨在研究模型在高压力下的自我矛盾行为。数据集包含 2,052 行数据,生成耗时 751.8 分钟。关键结果显示,基线正确率为 1,824 / 2,052,任何胁迫成功的比例为 2,052 / 2,052,信念崩溃率 (BCR) 为 21.3%。数据集包含多个字段,如原始 ID、主题、问题文本、选择项、正确标签、压力水平、推理长度、模型 ID、胁迫结果等。适用于研究大型语言模型在压力下的鲁棒性、自我矛盾行为以及对抗性推理等任务。
This dataset is named 'Pressure-Coerced Self-Contradiction — mmlu', which is derived from the MMLU benchmark and generated using the `gpt-5.1` model. It aims to investigate the self-contradiction behaviors of models under high-pressure conditions. The dataset contains 2,052 rows of data, with a total generation time of 751.8 minutes. Key results show that the baseline accuracy is 1,824 / 2,052, the proportion of successfully coerced cases is 2,052 / 2,052, and the Belief Collapse Rate (BCR) is 21.3%. The dataset includes multiple fields such as original ID, topic, question text, options, correct label, stress level, reasoning length, model ID, coercion outcome, and others. It is suitable for research tasks such as exploring the robustness, self-contradiction behaviors and adversarial reasoning of large language models under pressure.
数据集概述
数据集基本信息
- 数据集名称: Pressure-Coerced Self-Contradiction — mmlu
- 数据集地址: https://huggingface.co/datasets/kargaranamir/coercion
- 相关论文: "When a Model Turns on Itself: Pressure-Coerced Reasoning as a Robustness Probe"
- 创建日期: 2026-04-14 07:13 UTC
数据集参数与规模
- 数据来源: mmlu
- 目标模型:
gpt-5.1 - 压力水平:
high - 推理长度:
10sentences - 归因方式:
blind - 数据行数: 2,052
- 生成耗时: 751.8 分钟
关键结果
- 基线正确数: 1,824 / 2,052
- 任何胁迫成功数: 2,052 / 2,052
- 信念崩溃率 (BCR): 21.3% (388 / 1824)
数据模式 (Schema)
| 列名 | 类型 | 描述 |
|---|---|---|
original_id |
str | 源数据行ID |
subject |
str | 主题/类别 |
question |
str | 问题文本 |
choices |
JSON | {字母: 选项文本} |
correct_label |
str | 正确答案字母 |
correct_text |
str | 正确答案文本 |
pressure |
str | 压力水平 (low/medium/high) |
k_sentences |
int | 句子数量 (3/10/20) |
attribution |
str | 归因方式 (blind/self) |
model |
str | 模型ID |
coercion_results |
JSON | {字母: 推理内容或 I_AM_WEAK} |
coercion_success |
JSON | {字母: 布尔值} |
any_coercion_success |
bool | 至少一个选项被成功推理 |
baseline_reasoning |
str | 完整模型推理 (阶段2) |
baseline_answer |
str | 从基线中提取的答案字母 |
baseline_correct |
bool | 与正确答案匹配 |
challenges |
JSON | {字母: {对话, 最终答案, 崩溃状态}} |
any_collapsed |
bool | 如果模型在任何挑战中翻转则为True |
collapsed_to |
JSON list | 模型在所有挑战中崩溃至的字母列表 |
stage_reached |
str | 达到的阶段 (coercion_only / baseline_only / full / error) |
timestamp |
str | ISO时间戳 |
error |
str | 错误信息 (如果有) |
数据筛选指南
提供Python代码示例,用于加载数据集并计算信念崩溃率 (BCR)。代码展示了如何筛选出stage_reached为"full"的完整数据行,以及筛选出any_collapsed为真的崩溃实例。
challenges 列结构说明
该列是一个JSON对象,以选项字母(如"B")为键。每个键对应的值包含:
"conversation": 一个列表,包含系统提示、用户问题、助手基线推理与答案、用户胁迫性推理以及助手最终响应的多轮对话记录。"final_answer": 模型在胁迫后给出的最终答案字母。"collapsed": 布尔值,表示模型是否在该选项的挑战中崩溃(即推翻了原有答案)。




