aujcy commited on
Commit
b896ef5
Β·
verified Β·
1 Parent(s): 829d4af

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +77 -0
README.md CHANGED
@@ -1,3 +1,80 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # PulseMind: A Multi-Modal Medical Model for Real-World Clinical Diagnosis
6
+
7
+ > Official repository for **"PulseMind: A Multi-Modal Medical Model for Real-World Clinical Diagnosis"**, accepted as an **Oral** paper at **AAAI 2026**.
8
+
9
+ <p align="center">
10
+ <img src="https://img.shields.io/badge/Conference-AAAI%202026-blue.svg" />
11
+ <img src="https://img.shields.io/badge/Type-Oral-green.svg" />
12
+ <img src="https://img.shields.io/badge/Domain-Multi--Modal%20Medicine-orange.svg" />
13
+ </p>
14
+
15
+ <p align="center">
16
+ <b>Datasets, models, and benchmarks for PulseMind.</b>
17
+ </p>
18
+
19
+ ---
20
+
21
+ ## 🌐 Overview
22
+
23
+ This repository provides the official **codebase and evaluation scripts** for the PulseMind project, together with:
24
+
25
+ - πŸ§ͺ **MediScope**: a large-scale multimodal medical dataset.
26
+ In this release, we provide a curated subset of **~1,000 cases** (JSON + images). The full dataset is larger and will be gradually released.
27
+ - 🧠 **Models**:
28
+ - `PulseMind-72B`
29
+ - πŸ“Š **Benchmarks**:
30
+ - `MedDiagnose` – 237-sample test set (JSON + images)
31
+ - `CMtMedQA-test` – 1,000-sample test set (JSON)
32
+ - `MedDiagnose-plus` – 937-sample extended test set (JSON + images)
33
+
34
+ > ⚠️ Due to size and privacy considerations, **all datasets and model checkpoints are hosted externally** and are **not** stored in this GitHub repository.
35
+ > This repo mainly contains **evaluation code**.
36
+
37
+ ---
38
+
39
+ ### πŸ”— Dataset Download Link
40
+
41
+ - **MediScope (curated ~1k subset)**
42
+ - **MedDiagnose (237 samples)**
43
+ - **CMtMedQA-test (1,000 samples)**
44
+ - **MedDiagnose-plus (937 samples)**
45
+
46
+ [Download link](https://huggingface.co/datasets/AQ-MedAI/PulseMind)
47
+
48
+ ### 🧠 Model Checkpoint Links
49
+
50
+ - **PulseMind-72B checkpoint**: [Download link](https://huggingface.co/AQ-MedAI/PulseMind-72B/tree/main)
51
+
52
+ > After downloading, please follow the recommended directory layout
53
+ > (e.g., place raw data under `data/`, benchmark test sets under `Benchmark/`,
54
+ > and model checkpoints under `model/`), so that the provided evaluation scripts
55
+ > can run out of the box.
56
+
57
+ ---
58
+
59
+ ## πŸ“ Repository Structure (Code Only)
60
+
61
+ The GitHub repository mainly contains evaluation code and auxiliary configs:
62
+
63
+ ```bash
64
+ .
65
+ β”œβ”€β”€ data/ # (empty by default) place downloaded datasets here
66
+ β”‚
67
+ β”œβ”€β”€ Benchmark/
68
+ β”‚ β”œβ”€β”€ CMtMedQA-test/ # Folder for CMtMedQA-test data (JSON, etc.)
69
+ β”‚ β”œβ”€β”€ MedDiagnose/ # Folder for MedDiagnose data (JSON + images)
70
+ β”‚ β”œβ”€β”€ MedDiagnose-plus/ # Folder for MedDiagnose-plus data (JSON + images)
71
+ β”‚ └── Eval/ # Optional: extra evaluation utilities / configs
72
+ β”‚
73
+ β”œβ”€β”€ model/ # Place downloaded model checkpoints here
74
+ β”‚
75
+ └── README.md
76
+
77
+
78
+ ---
79
+ license: mit
80
+ ---