将AI嵌入业务系统,基于BPMN模型的大模型医疗应用开发 \* { margin: 0; padding: 0; outline: 0; } body { font-family: "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif; line-height: 1.6; } .\_\_page\_content\_\_ { max-width: 667px; margin: 0 auto; padding: 20px; text-size-adjust: 100%; color: rgba(0, 0, 0, 0.9); padding-bottom: 64px; } .title { user-select: text; font-size: 22px; line-height: 1.4; margin-bottom: 14px; font-weight: 500; } .\_\_meta\_\_ { color: rgba(0, 0, 0, 0.3); font-size: 15px; line-height: 20px; hyphens: auto; word-break: break-word; margin-bottom: 50px; } .\_\_meta\_\_ .nick\_name { color: #576B95; } .\_\_meta\_\_ .copyright { color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.05); padding: 0 4px; margin: 0 10px 10px 0; } blockquote.source { padding: 10px; margin: 30px 0; border-left: 5px solid #ccc; color: #333; font-style: italic; word-wrap: break-word; } blockquote.source a { cursor: pointer; text-decoration: underline; } .item\_show\_type\_0 > section { margin-top: 0; margin-bottom: 24px; } a { color: #576B95; text-decoration: none; cursor: default; } .text\_content { margin-bottom: 50px; user-select: text; font-size: 17px; white-space: pre-wrap; word-wrap: break-word; line-height: 28px; hyphens: auto; } .picture\_content .picture\_item { margin-bottom: 30px; } .picture\_content .picture\_item .picture\_item\_label { text-align: center; } img { max-width: 100%; } .pay\_subscribe\_notice { margin: 30px 0; padding: 20px; background: #fffbe6; border: 1px solid #ffe58f; border-radius: 8px; } .pay\_subscribe\_badge { display: inline-block; padding: 4px 12px; background: #faad14; color: #fff; border-radius: 4px; font-size: 14px; font-weight: 500; margin-bottom: 12px; } .pay\_subscribe\_desc { font-size: 15px; line-height: 1.8; color: rgba(0, 0, 0, 0.7); margin-bottom: 12px; } .pay\_subscribe\_hint { font-size: 13px; color: rgba(0, 0, 0, 0.4); } .\_\_bottom-bar\_\_ { display: flex; justify-content: space-between; align-items: center; position: fixed; bottom: 0; left: 0; right: 0; height: 64px; padding: 8px 20px; background: white; box-sizing: border-box; border-top: 1px solid rgba(0, 0, 0, 0.2); } .\_\_bottom-bar\_\_ .left { display: flex; align-items: center; font-size: 15px; white-space: nowrap; } .\_\_bottom-bar\_\_ .right { display: flex; } .\_\_bottom-bar\_\_ .sns\_opr\_btn { display: flex; align-items: center; user-select: none; background: transparent; border: 0; color: rgba(0, 0, 0, 0.9); font-size: 14px; } .\_\_bottom-bar\_\_ .sns\_opr\_btn:not(:last-child) { margin-right: 16px; } .\_\_bottom-bar\_\_ .sns\_opr\_btn > img { margin-right: 4px; }
将AI嵌入业务系统,基于BPMN模型的大模型医疗应用开发
原创 恒健知行 恒健知行 2025-08-08 18:24 安徽
AI在医疗方面的应用快速发展,AI与业务系统的集成是一种必然。国外有研究者提出了一种基于BPMN(业务流程建模)方式的AI与业务系统整合的方法,该方法涵盖了大模型的整个开发周期。该方面的核心流程包括:
1.数据选择(Data Selection)
该流程是让用户能够从业务系统已经准备好的、经过伦理审批且已脱敏的临床数据队列,按需抽取到符合特定AI模型需要的数据集,并安全地传递到AI平台的临时存储区,为后续标注或训练做准备。具体流程:
2.数据标注(Data Annotation)
数据标注流程让临床专家在院内安全环境中完成高质量人工标注,并确保标注结果与数据永久关联、可版本化、可复现、可审计。该流程是把已经在AI平台的临时存储区里的脱敏数据集,交给具备领域知识的标注者(医生/技师/研究员)进行人工或半自动标注,并把结果回写,实现“一次标注、多处共享、全程可追溯”。
3.本地训练与测试(On-site Training and Testing)
本地训练与测试流程把“数据-算法-评估-合规”四件事串成一条可重复、可审查、可上线的院内闭环,确保最终模型既技术过硬又符合临床与法规要求。在院内本地计算环境中,利用已标注且脱敏的数据队列,完成 AI 模型的训练、技术验证、医学验证与合规评估,最终形成可复现、可追溯、可上线的“金标准”模型。
4.推理(Inference)
该流程根据场景选择模型、加载数据,利用AI平台实现推理,输出AI结果,最终进行结果存储或可视化。真实业务分为3种推理场景:
1)批量推理(Batch Inference)
诊疗场景:批量推理主要是把 EMR 里的患者数据一次性推给AI平台,大模型跑完立刻把结构化结果写回病历,全过程可追踪、可重跑、不落地出医院。
研究场景:用户只需指定任务,系统自动挑选并加载对应的最佳模型,一次性完成对批量数据的推理,结果同时回写数据中心和前端可视化
2)实时推理(Real-Time Inference)
文章以 ICU 监护仪生命体征监护为例,实时推理把每一条生命体征,毫秒级变成风险分数,直接弹窗给医生,同时把数据同步到科研库,全程不出医院网。
原文《Integrating an AI platform into clinical IT BPMN processes for clinical AI model development》,14页。需要文献,请关注私信。
相关文献系列:
《迈向医学有效的沉浸式技术: VR、AR、XR 和 AI 解决方案的潜力和未来应用》
《电子健康记录建模的系统综述:从深度学习方法到大型语言模型》
恒健知行
 阅读 赞  分享 ’%3E %3Cg transform=‘translate(0 -2.349)’%3E %3Cpath d=‘M0 2.349h24v24H0z’/%3E %3Cpath fill=’%23576B95’ d=‘M16.45 7.68c-.954 0-1.94.362-2.77 1.113l-1.676 1.676-1.853-1.838a3.787 3.787 0 0 0-2.63-.971 3.785 3.785 0 0 0-2.596 1.112 3.786 3.786 0 0 0-1.113 2.687c0 .97.368 1.938 1.105 2.679l7.082 6.527 7.226-6.678a3.787 3.787 0 0 0 .962-2.618 3.785 3.785 0 0 0-1.112-2.597A3.687 3.687 0 0 0 16.45 7.68zm3.473.243a4.985 4.985 0 0 1 1.464 3.418 4.98 4.98 0 0 1-1.29 3.47l-.017.02-7.47 6.903a.9.9 0 0 1-1.22 0l-7.305-6.73-.008-.01a4.986 4.986 0 0 1-1.465-3.535c0-1.279.488-2.56 1.465-3.536A4.985 4.985 0 0 1 7.494 6.46c1.24-.029 2.49.4 3.472 1.29l.01.01L12 8.774l.851-.85.01-.01c1.046-.951 2.322-1.434 3.59-1.434 1.273 0 2.52.49 3.472 1.442z’/%3E %3C/g%3E %3C/g%3E %3C/g%3E%3C/svg%3E) 推荐 ’ fill=’%23000’ fill-opacity=’.9’/%3E%3C/svg%3E) 留言