MedVLSynther/MedVLSynther-1K

Dataset

0

stars

9

commits

1

linked in READMEs

Oct 29, 2025

updated

Browse cluster: Medical Vision-Language Synthesis Datasets

README

Code: https://github.com/UCSC-VLAA/MedVLSynther Project Page: https://ucsc-vlaa.github.io/MedVLSynther/

📊 Datasets

Available Datasets

We release MedSynVQA and the subsets used in our paper. Each set targets medical vision–language QA and supports RLVR/SFT training.

DatasetGeneratorVerifierModalityDescriptionDownload
MedSynVQAGLM-4.5V 108BQwen2.5-VL 72BImage–TextFull training set for medical VQA (used for RLVR).🤗 HF
MedSynVQA-10KGLM-4.5V 108BQwen2.5-VL 72BImage–Text10K-sample training subset for RLVR.🤗 HF
MedSynVQA-5KGLM-4.5V 108BQwen2.5-VL 72BImage–Text5K-sample training subset for RLVR.🤗 HF
MedSynVQA-2KGLM-4.5V 108BQwen2.5-VL 72BImage–Text2K-sample training subset for RLVR.🤗 HF
MedSynVQA-1KGLM-4.5V 108BQwen2.5-VL 72BImage–Text1K-sample training subset for RLVR.🤗 HF
MedSynVQA-5K-qwen-glmQwen2.5-VL 72BGLM-4.5V 108BImage–Text5K subset for generator and verifier choice ablation (GLM→Qwen generator, Qwen→GLM verifier).🤗 HF
MedSynVQA-5K-internvl-glmInternVL-3.5 38BGLM-4.5V 108BImage–Text5K subset for generator choice ablation (InternVL→GLM verifier).🤗 HF
MedSynVQA-5K-glm-glmGLM-4.5V 108BGLM-4.5V 108BImage–Text5K subset for verifier choice ablation (Qwen→GLM verifier).🤗 HF
MedSynVQA-5K-no-verifyGLM-4.5V 108BN/AImage–Text5K subset for verifier necessity ablation (no verification step).🤗 HF
MedSynVQA-5K-PMC-styleGLM-4.5V 108BN/AImage–Text5K subset generated with PMC-VQA–style prompts.🤗 HF
MedSynVQA-5K-SFTGLM-4.5V 108BN/AImage–Text5K subset generated for SFT training.🤗 HF

Dataset Usage

from datasets import load_dataset

# Load evaluation dataset
eval_dataset = load_dataset("UCSC-VLAA/MedVLThinker-Eval")

# Load training dataset
train_dataset = load_dataset("MedVLSynther/MedSynVQA-13K")
Dataset details and preparation of your own

Data Format

All train datasets follow a unified format:

{
    "images": [PIL.Image],           # List of images                           
    "question": str,                 # Question text
    "options": Dict[str, str],       # Multiple choice options
    "answer_label": str,             # Correct answer label (A, B, C, D, E)
    "answer": str,                   # Full answer text
    "reasoning": str,                # Chain-of-thought reasoning (optional)
    "dataset_name": str,             # Source dataset name
    "dataset_index": int             # Unique sample identifier
}

Contributors

NingsenWang

9 commits

MedVLSynther/MedVLSynther-1K

Dataset

0

stars

9

commits

1

linked in READMEs

Oct 29, 2025

updated

Browse cluster: Medical Vision-Language Synthesis Datasets

README

Code: https://github.com/UCSC-VLAA/MedVLSynther Project Page: https://ucsc-vlaa.github.io/MedVLSynther/

📊 Datasets

Available Datasets

We release MedSynVQA and the subsets used in our paper. Each set targets medical vision–language QA and supports RLVR/SFT training.

DatasetGeneratorVerifierModalityDescriptionDownload
MedSynVQAGLM-4.5V 108BQwen2.5-VL 72BImage–TextFull training set for medical VQA (used for RLVR).🤗 HF
MedSynVQA-10KGLM-4.5V 108BQwen2.5-VL 72BImage–Text10K-sample training subset for RLVR.🤗 HF
MedSynVQA-5KGLM-4.5V 108BQwen2.5-VL 72BImage–Text5K-sample training subset for RLVR.🤗 HF
MedSynVQA-2KGLM-4.5V 108BQwen2.5-VL 72BImage–Text2K-sample training subset for RLVR.🤗 HF
MedSynVQA-1KGLM-4.5V 108BQwen2.5-VL 72BImage–Text1K-sample training subset for RLVR.🤗 HF
MedSynVQA-5K-qwen-glmQwen2.5-VL 72BGLM-4.5V 108BImage–Text5K subset for generator and verifier choice ablation (GLM→Qwen generator, Qwen→GLM verifier).🤗 HF
MedSynVQA-5K-internvl-glmInternVL-3.5 38BGLM-4.5V 108BImage–Text5K subset for generator choice ablation (InternVL→GLM verifier).🤗 HF
MedSynVQA-5K-glm-glmGLM-4.5V 108BGLM-4.5V 108BImage–Text5K subset for verifier choice ablation (Qwen→GLM verifier).🤗 HF
MedSynVQA-5K-no-verifyGLM-4.5V 108BN/AImage–Text5K subset for verifier necessity ablation (no verification step).🤗 HF
MedSynVQA-5K-PMC-styleGLM-4.5V 108BN/AImage–Text5K subset generated with PMC-VQA–style prompts.🤗 HF
MedSynVQA-5K-SFTGLM-4.5V 108BN/AImage–Text5K subset generated for SFT training.🤗 HF

Dataset Usage

from datasets import load_dataset

# Load evaluation dataset
eval_dataset = load_dataset("UCSC-VLAA/MedVLThinker-Eval")

# Load training dataset
train_dataset = load_dataset("MedVLSynther/MedSynVQA-13K")
Dataset details and preparation of your own

Data Format

All train datasets follow a unified format:

{
    "images": [PIL.Image],           # List of images                           
    "question": str,                 # Question text
    "options": Dict[str, str],       # Multiple choice options
    "answer_label": str,             # Correct answer label (A, B, C, D, E)
    "answer": str,                   # Full answer text
    "reasoning": str,                # Chain-of-thought reasoning (optional)
    "dataset_name": str,             # Source dataset name
    "dataset_index": int             # Unique sample identifier
}

Contributors

NingsenWang

9 commits