一行代码,将临床文本转化为结构化洞见。
实体抽取、PII 去标识化,以及 1,000+ 个完全运行在你自己硬件上的专业医疗模型——从 Python 的一行调用,
到由 Apple MLX 驱动的 iPhone 原生 Swift 应用。无需云端,无供应商锁定,患者数据绝不离开你的网络。
1,000+ 模型 · 12 种语言 · 247 个 PII 检查点 · 100% 本地运行 · Apache-2.0
English · 简体中文 · Español · Français · Deutsch · Italiano · Português · Nederlands · العربية · हिन्दी · తెలుగు · 日本語 · Türkçe · فارسی
| **Python API** ```python from openmed import analyze_text analyze_text( "Patient received 75mg " "clopidogrel for NSTEMI.", model_name= "pharma_detection_superclinical", ) ``` | **REST 服务** ```bash uvicorn openmed.service.app:app \ --host 0.0.0.0 --port 8080 ``` `GET /health` `POST /analyze` `POST /pii/extract` `POST /pii/deidentify` | **批处理** ```python from openmed import BatchProcessor p = BatchProcessor( model_name= "disease_detection_superclinical", group_entities=True, ) p.process_texts([...]) ``` |