韩国脓毒症联盟全国脓毒症注册中心数据集
韩国脓毒症联盟全国脓毒症注册中心数据集包含11,981名成年脓毒症患者的691个结构化临床特征,用于提升LLM在脓毒症临床推理任务中的能力。
基本信息
资源简介
该数据集由韩国高级科学技术研究院、首尔国立大学医院、首尔国立大学医学院等机构创建,包含2019年9月至2020年12月期间登记的11,981名成年脓毒症患者的临床数据。数据以结构化表格形式呈现,包含691个特征,如人口统计信息、实验室结果、治疗方法等。数据集主要用于构建推理密集型问题,通过强化学习训练大型语言模型,提升其在脓毒症相关临床推理任务中的表现。
下载信息
注册下载
Tips: 该数据集需要在对应的数据源网站注册通过后,才能进行数据下载,注册有对应要求,或者需要收费。
暂未开放公开下载
Tips: 该数据集属于公开下载,应该可以免费公开下载。
免登录有偿下载
Tips: 该数据集 Qianfanghub 可以协助提供有偿下载服务,注意,服务不针对数据相关产权,只是技术服务费。
提供高速下载与技术交付服务(收技术服务费,非数据销售)
暂未开放千方医数集,医疗数据集部分,是为社区服务的公开医疗数据集搜索引擎,并不存储或者下载原始的任何数据。 如果您有其他医疗数据需求,可以和客服联系,或者下工单。我们有强大的三甲医疗机构帮助您提供个性化的医疗数据定制、采集、标注服务。
使用方式
数据集获取
git clone https://github.com/starmpcc/C-Reason.git
curl -L -o repo.zip https://github.com/starmpcc/C-Reason/archive/refs/heads/main.zip
unzip repo.zip
源站 README 摘录(使用方式)
C-Reason
- Official Implementation of the paper:
Enhancing LLMs’’ Clinical Reasoning with Real-World Data from a Nationwide Sepsis Registry [arxiv]
TL;DR We propose enhancing the clinical reasoning capabilities of large language models (LLMs) by leveraging real-world clinical records.
By training on a sepsis registry, we developed \mname, which showed improved reasoning performance not only on the sepsis registry itself but also across other datasets.
Reproduction
- The training data comes from the sepsis registry, which is private, along with additional private datasets from the hospitalized cohort and stroke registry.
- We are currently discussing the potential release of the model.
- Of all the data used, only the MIMIC-III dataset (see Section 3.2) is publicly available.
<details>
<summary> Setup </summary> - We use devcontainer for reproducibility.
- Modify
.devcontainer/.envto set environment variables. - Build the devcontainer using vscode or using devcontainer CLI
<details>
<summary> Sepsis Registry </summary> - NOTE: This dataset is private.
- Preprocessing
python scripts/sepsis_preprocessing.py metadata_path {METADATA_PATH} data_path {DATA_PATH} kor_to_eng_dict_path {KOR_TO_ENG_DICT_PATH} output_path {OUTPUT_PATH}
- Training
accelerate launch config_file config/deepspeed.json main.py +launcher=grpo +dataset@dataset.grpo=grpo model_path=microsoft/phi-4 debug=false datset.grpo.data_path={OUTPUT_PATH}
- Evaluation
python main.py +launcher=evaluate debug=false +dataset@dataset.grpo=grpo dataset.grpo.data_path={OUTPUT_PATH} model_path={MODEL_PATH} dataset.sepsis_registry.all_victims=true dataset.sepsis_registry.num_eval_samples=99999999
</details>
<details>
<summary> MIMIC-III </summary>
- Setup
git submodule init && git submodule updatecd ehr_postgres && python mimic_iii {MIMIC_III_PATH}cd ../mimic_sepsis && python preprocess.py && python sepsis_cohort.py process_raw && cd ..
- Measurement Prediction Preprocessing
python scripts/mimic_all_victims.py data_path mimic_sepsis/sepsis_final_data_RAW_withTimes.csv output_path {OUTPUT_PATH}
- Mortality Prediction Preprocessing
-
数据加载示例(表格/文本类)
import pandas as pd, glob, os
files = (glob.glob(os.path.join(path, "**", "*.csv"), recursive=True)
+ glob.glob(os.path.join(path, "**", "*.tsv"), recursive=True)
+ glob.glob(os.path.join(path, "**", "*.xlsx"), recursive=True))
print("数据文件:", files)
df = pd.read_csv(files[0])
print(df.shape); print(df.columns.tolist()); print(df.head(3))
精度瓶颈?数据缺失?
当前公开数据无法满足您的算法精度?千方提供针对 脓毒症 的高质量、多模态真实临床数据定制解决方案。




