Research Papers 论文研究 1d ago Updated 15h ago 更新于 15小时前 45

Auditable Emergency Triage for Maternal and Newborn Care in India 印度孕产妇和新生儿护理的可审计紧急分诊

Noora Health replaced an opaque LLM-only emergency triage system with a two-stage pipeline combining LLM-based symptom extraction and a deterministic rule engine for maternal and newborn care queries The new architecture improved recall from 0.565 to 0.810 and F1 from 0.606 to 0.702, with structured rules driving most of the accuracy gains Decomposing triage into extraction and rule-based classification stages enabled full auditability, allowing clinicians to inspect and correct each decision st Noora Health将LLM紧急分诊系统重构为"LLM信息提取+确定性规则引擎"的两阶段架构,解决原有系统的黑盒问题 新系统召回率从0.565提升至0.810,F1分数从0.606提升至0.702,准确率显著提升 临床专家可独立添加规则而无需重新运行完整评估,部署后已新增48条规则 系统已处理152,421条患者咨询,标记28,535条(18.7%)为紧急情况,过度升级率为17.8%

58
Hot 热度
72
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • Noora Health replaced an opaque LLM-only emergency triage system with a two-stage pipeline combining LLM-based symptom extraction and a deterministic rule engine for maternal and newborn care queries
  • The new architecture improved recall from 0.565 to 0.810 and F1 from 0.606 to 0.702, with structured rules driving most of the accuracy gains
  • Decomposing triage into extraction and rule-based classification stages enabled full auditability, allowing clinicians to inspect and correct each decision stage independently
  • Since deployment, the system has processed 152,421 queries, flagged 18.7% as emergencies, maintained a 17.8% over-escalation rate, and seen clinicians add 48 new rules without costly re-evaluations

Why It Matters

This work demonstrates a practical pattern for deploying LLMs in high-stakes clinical settings: hybrid architectures that combine model-based extraction with deterministic reasoning can significantly outperform pure LLM approaches while remaining auditable and maintainable. For AI practitioners building healthcare systems, it provides a concrete blueprint for balancing automation with clinical oversight, showing that structured rules can complement LLMs rather than compete with them.

Technical Details

  • Two-stage decomposition: An LLM extracts canonical symptoms and patient context from free-text queries using a clinician-authored vocabulary, then a deterministic rule engine applies a documented decision tree to classify emergencies
  • Performance gains: Recall improved from 0.565 to 0.810 and F1 from 0.606 to 0.702; the shift from a flat list of danger signs to a structured decision tree was the primary driver of accuracy improvement
  • Auditability by design: Each stage (mistranslation, symptom extraction, context inference, rule application) is independently inspectable, enabling clinicians to identify exactly where errors occur
  • Operational impact: 152,421 queries triaged post-deployment, 28,535 flagged as emergencies (18.7%), 17.8% over-escalation rate with no increase in missed emergencies, and 48 new rules added by clinicians without regression testing
  • Deployment context: Integrated into Noora Health's WhatsApp-based service handling 50,000+ medical queries monthly for maternal and newborn care in India

Industry Insight

  • Hybrid LLM-plus-rules architectures should be the default consideration for any production healthcare AI system where auditability and regulatory compliance are required; pure end-to-end LLM approaches remain insufficiently transparent for clinical decision-making
  • The 48 rules added by clinicians post-deployment without re-evaluation demonstrates that decoupling model logic from business rules creates a sustainable correction loop—organizations should design systems that allow domain experts to iterate on rules independently of ML engineering cycles
  • The over-escalation rate of 17.8% with zero increase in missed emergencies suggests that in triage systems, optimizing for recall (minimizing false negatives) is ethically and clinically preferable to optimizing for precision, a principle that should guide evaluation metric selection in health AI deployments

TL;DR

  • Noora Health将LLM紧急分诊系统重构为"LLM信息提取+确定性规则引擎"的两阶段架构,解决原有系统的黑盒问题
  • 新系统召回率从0.565提升至0.810,F1分数从0.606提升至0.702,准确率显著提升
  • 临床专家可独立添加规则而无需重新运行完整评估,部署后已新增48条规则
  • 系统已处理152,421条患者咨询,标记28,535条(18.7%)为紧急情况,过度升级率为17.8%

为什么值得看

本文展示了医疗AI系统中可审计性(auditability)与性能平衡的实际工程方案,为高可靠性场景下的LLM应用提供了可复用的架构范式。对于从事医疗AI、安全关键系统或LLM工程化的从业者,该案例提供了从"端到端黑盒模型"转向"可解释混合系统"的完整实践路径。

技术解析

  • 两阶段架构:第一阶段由LLM从患者查询中提取规范症状和患者上下文(使用临床专家编写的词汇表);第二阶段由确定性规则引擎根据提取结果判断是否为紧急情况
  • 可审计性设计:系统分解使临床专家可逐阶段检查错误来源——查询误译、症状提取错误、上下文推断错误或规则缺失,而非阅读完整的推理链
  • 规则驱动改进:结构化规则贡献了大部分准确率提升,临床专家可独立添加新规则而避免回归测试的成本
  • 部署效果:系统已处理超15万条咨询,18.7%被标记为紧急,过度升级率17.8%,且未增加漏报率

行业启示

  • 医疗AI的可审计性优先:在高风险医疗场景中,系统的可解释性和可审计性应优先于端到端模型的性能优化,混合架构(LLM+规则)是可行的工程折中方案
  • 临床专家参与的系统迭代:将临床决策逻辑显式化并转化为可维护的规则,使非技术专家也能参与系统改进,形成更快的纠错闭环
  • LLM在安全关键场景中的角色定位:LLM更适合承担信息提取和结构化任务,而将高风险决策交由确定性逻辑处理,这种分工模式值得在更多垂直领域推广

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

LLM 大模型 Healthcare AI 医疗AI Research 科学研究