Research Papers 论文研究 5h ago Updated 38m ago 更新于 38分钟前 50

Cross-Platform Generalisation Failure in Mental Health Natural Language Processing: A Five-Axis Fairness Audit of Transformer Models on Social Media 心理健康自然语言处理的跨平台泛化失败:社交媒体上Transformer模型的五轴公平性审计

The Cross-Platform Fairness Evaluation (CPFE) framework introduces a five-axis audit protocol (discriminative performance, calibration, statistical significance, prediction equity, attribution stability) for assessing mental health NLP models across social media platforms Transformer models (BERT, RoBERTa, Emotion-DistilRoBERTa, GoEmotions-RoBERTa) trained on Kaggle mental health corpus (n=35,556) suffer catastrophic cross-platform AUC degradation: 30.3-35.4% on Reddit and 37.9-39.5% on Twitter 提出跨平台公平性评估(CPFE)五轴审计框架,涵盖判别性能、校准、统计显著性、预测公平性和归因稳定性 四个Transformer模型在Kaggle训练后,跨平台AUC下降30.3-39.5%,校准误差(ECE)上升3-9倍 平台特定温度缩放可将ECE降低88%而不影响判别性能,证实失效模式可分离 归因稳定性分析显示跨平台词汇几乎完全分化(Jaccard J=0在14/16模型-类别对中) 单种子微调实验表明目标平台标签作为训练信号比校准信号更有价值(AUC提升0.216)

68
Hot 热度
78
Quality 质量
72
Impact 影响力

Analysis 深度分析

TL;DR

  • The Cross-Platform Fairness Evaluation (CPFE) framework introduces a five-axis audit protocol (discriminative performance, calibration, statistical significance, prediction equity, attribution stability) for assessing mental health NLP models across social media platforms
  • Transformer models (BERT, RoBERTa, Emotion-DistilRoBERTa, GoEmotions-RoBERTa) trained on Kaggle mental health corpus (n=35,556) suffer catastrophic cross-platform AUC degradation: 30.3-35.4% on Reddit and 37.9-39.5% on Twitter versus near-perfect in-domain AUC (0.983-0.987)
  • Calibration failure is severe and separable from discriminative failure: ECE increases 3-9x on out-of-platform data, and platform-specific temperature scaling recovers 88% of calibration loss without affecting AUC
  • Prediction equity analysis reveals extreme disparities with equalized odds differences of 0.753-0.831 across platforms, and attribution stability shows near-complete vocabulary divergence (Jaccard J=0 in 14/16 model-class pairs)
  • Target-platform fine-tuning (single seed) improves mean AUC by 0.216, suggesting platform-specific labels serve as a stronger training signal than a calibration signal

Why It Matters

This research exposes a critical reliability gap in deploying mental health NLP systems across heterogeneous social media environments, where models that appear highly accurate in controlled settings can fail catastrophically in production. For AI practitioners building clinical proxy detection systems, the findings demonstrate that standard in-domain evaluation is dangerously insufficient and that fairness, calibration, and attribution must be audited alongside discriminative performance. The CPFE framework provides a practical, multi-axis protocol that the mental health AI community can adopt as a new evaluation standard.

Technical Details

  • CPFE Framework: A five-axis audit protocol evaluating (1) discriminative performance via AUC, (2) calibration via Expected Calibration Error (ECE), (3) statistical significance across five independent training seeds, (4) prediction equity via Disparity Index (DI) and equalized odds differences, and (5) attribution stability via Jaccard similarity of top-K feature vocabularies
  • Models & Data: Four transformer architectures (BERT, RoBERTa, Emotion-DistilRoBERTa, GoEmotions-RoBERTa) trained on a Kaggle mental health corpus (n=35,556) and evaluated on Reddit (n=6,257) and Twitter (n=2,883) test sets, with emotion labels mapped to clinical proxies
  • Calibration Findings: In-domain ECE of 0.056-0.060 degrades to 0.196-0.229 on Reddit and 0.499-0.542 on Twitter; platform-specific temperature scaling reduces mean ECE by 88.0% with negligible AUC change (|delta AUC| < 0.01), confirming calibration and discrimination are separable failure modes
  • Equity & Attribution: Raw DI < 0.17 with prior-shift-adjusted DI of 0.11-0.29 on Reddit; equalized odds differences reach 0.753-0.830 (Reddit) and 0.755-0.831 (Twitter, anxiety class); vocabulary-level attribution shows Jaccard similarity of 0 in 14/16 model-class pairs at K=10, indicating near-total lexical divergence
  • Fine-tuning Experiment: Single-seed target-platform fine-tuning yields a mean AUC improvement of 0.216, demonstrating that platform-specific labeled data is more valuable as a training signal than as a post-hoc calibration mechanism

Industry Insight

  • Organizations deploying mental health NLP systems on social media must adopt multi-platform evaluation as a standard practice; in-domain benchmarks alone provide a false sense of reliability and could lead to harmful misclassification in real-world clinical proxy detection
  • The separability of calibration and discriminative failure modes suggests that lightweight post-hoc calibration (e.g., temperature scaling) can address reliability gaps without retraining, but this is insufficient for equity and attribution concerns that require platform-aware model development
  • The near-complete vocabulary divergence (Jaccard J=0) indicates that platform-specific linguistic norms fundamentally differ, implying that domain adaptation strategies should prioritize lexical and stylistic alignment rather than relying solely on architectural improvements or larger pretraining corpora

TL;DR

  • 提出跨平台公平性评估(CPFE)五轴审计框架,涵盖判别性能、校准、统计显著性、预测公平性和归因稳定性
  • 四个Transformer模型在Kaggle训练后,跨平台AUC下降30.3-39.5%,校准误差(ECE)上升3-9倍
  • 平台特定温度缩放可将ECE降低88%而不影响判别性能,证实失效模式可分离
  • 归因稳定性分析显示跨平台词汇几乎完全分化(Jaccard J=0在14/16模型-类别对中)
  • 单种子微调实验表明目标平台标签作为训练信号比校准信号更有价值(AUC提升0.216)

为什么值得看

本文为心理健康NLP系统提供了首个系统性跨平台公平性审计框架,揭示了当前模型在真实异构环境中的严重泛化缺陷。研究结果对开发临床级心理健康辅助工具具有直接指导意义,强调了跨平台验证应成为行业标准要求。

技术解析

  • CPFE五轴框架:包含判别性能(AUC)、校准(ECE)、统计显著性、预测公平性(差异指数DI、等几率差)和归因稳定性(词汇重叠Jaccard指数)五个评估维度
  • 模型与数据:测试BERT、RoBERTa、Emotion-DistilRoBERTa、GoEmotions-RoBERTa四个Transformer模型,在Kaggle心理健康语料(n=35,556)上训练,在Reddit(n=6,257)和Twitter(n=2,883)上评估
  • 校准失效量化:域内ECE为0.056-0.060,跨平台后Reddit升至0.196-0.229,Twitter升至0.499-0.542,温度缩放可显著改善
  • 公平性差距:Reddit上心理健康代理类别的等几率差达0.753-0.830,Twitter上焦虑类别达0.755-0.831
  • 归因不稳定性:K=10时14/16模型-类别对的Jaccard指数为0,表明平台间词汇使用模式几乎无重叠

行业启示

  • 心理健康NLP系统部署前必须进行跨平台五轴公平性审计,单一平台性能指标不足以保障临床可用性
  • 温度缩放可作为轻量级校准修复手段,但无法解决判别性能下降和公平性差距问题
  • 建议将目标平台数据纳入微调训练而非仅用于后校准,以获取更显著的泛化提升

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Evaluation 评测 Healthcare AI 医疗AI Dataset 数据集 Research 科学研究 Ethics 伦理