Skip to content

Latest commit

Β 

History

History
73 lines (52 loc) Β· 2.68 KB

File metadata and controls

73 lines (52 loc) Β· 2.68 KB

PulseMind: A Multi-Modal Medical Model for Real-World Clinical Diagnosis

Official repository for "PulseMind: A Multi-Modal Medical Model for Real-World Clinical Diagnosis", accepted as an Oral paper at AAAI 2026.

Datasets, models, and benchmarks for PulseMind.


🌐 Overview

This repository provides the official codebase and evaluation scripts for the PulseMind project, together with:

  • πŸ§ͺ MediScope: a large-scale multimodal medical dataset.
    In this release, we provide a curated subset of ~1,000 cases (JSON + images). The full dataset is larger and will be gradually released.
  • 🧠 Models:
    • PulseMind-72B
  • πŸ“Š Benchmarks:
    • MedDiagnose – 237-sample test set (JSON + images)
    • CMtMedQA-test – 1,000-sample test set (JSON)
    • MedDiagnose-plus – 937-sample extended test set (JSON + images)

⚠️ Due to size and privacy considerations, all datasets and model checkpoints are hosted externally and are not stored in this GitHub repository.
This repo mainly contains evaluation code.


πŸ”— Dataset Download Link

  • MediScope (curated ~1k subset)

  • MedDiagnose (237 samples)

  • CMtMedQA-test (1,000 samples)

  • MedDiagnose-plus (937 samples)

    Download link

🧠 Model Checkpoint Links

After downloading, please follow the recommended directory layout
(e.g., place raw data under data/, benchmark test sets under Benchmark/,
and model checkpoints under model/), so that the provided evaluation scripts can run out of the box.


πŸ“ Repository Structure (Code Only)

The GitHub repository mainly contains evaluation code and auxiliary configs:

.
β”œβ”€β”€ data/                        # (empty by default) place downloaded datasets here
β”‚
β”œβ”€β”€ Benchmark/
β”‚   β”œβ”€β”€ CMtMedQA-test/           # Folder for CMtMedQA-test data (JSON, etc.)
β”‚   β”œβ”€β”€ MedDiagnose/             # Folder for MedDiagnose data (JSON + images)
β”‚   β”œβ”€β”€ MedDiagnose-plus/        # Folder for MedDiagnose-plus data (JSON + images)
β”‚   └── Eval/                    # Optional: extra evaluation utilities / configs
β”‚
β”œβ”€β”€ model/                       # Place downloaded model checkpoints here
β”‚
└── README.md