This dataset is designed for fine-tuning vision-language models, specifically PaliGemma, to perform medical visual question answering (VQA). It contains real-world medical images paired with patient-style questions and doctor-style answers.
Each example contains:
| Column | Description |
|---|---|
| image | Image of a medical condition (skin, mouth, eye, etc.) |
| question | Natural question from a patient perspective |
| answer | Concise, professional medical response from a doctor |
| Split | Number of Samples | Description |
|---|---|---|
| train | (Your number here) | For model fine-tuning |
| test | (Your number here) | For evaluation / validation |
from datasets import load_dataset
dataset = load_dataset("siyunhe/medical-pilagemma-lora")
print(dataset["train"][0])
# Output:
# {
# 'image': <PIL.Image.Image>,
# 'question': 'Why is my skin peeling like this?',
# 'answer': 'This looks like dry skin or dermatitis, often caused by irritation or dehydration.'
# }
For research and educational purposes only.
Not for clinical or diagnostic use.
If you use this dataset, please cite:
@misc{medical_vqa_pilagemma,
author = {Siyun He},
title = {Medical Visual Question Answering Dataset for LoRA Fine-tuning PaliGemma},
year = 2025,
howpublished = {Hugging Face: siyunhe/medical-pilagemma-lora}
}
4 commits
This dataset is designed for fine-tuning vision-language models, specifically PaliGemma, to perform medical visual question answering (VQA). It contains real-world medical images paired with patient-style questions and doctor-style answers.
Each example contains:
| Column | Description |
|---|---|
| image | Image of a medical condition (skin, mouth, eye, etc.) |
| question | Natural question from a patient perspective |
| answer | Concise, professional medical response from a doctor |
| Split | Number of Samples | Description |
|---|---|---|
| train | (Your number here) | For model fine-tuning |
| test | (Your number here) | For evaluation / validation |
from datasets import load_dataset
dataset = load_dataset("siyunhe/medical-pilagemma-lora")
print(dataset["train"][0])
# Output:
# {
# 'image': <PIL.Image.Image>,
# 'question': 'Why is my skin peeling like this?',
# 'answer': 'This looks like dry skin or dermatitis, often caused by irritation or dehydration.'
# }
For research and educational purposes only.
Not for clinical or diagnostic use.
If you use this dataset, please cite:
@misc{medical_vqa_pilagemma,
author = {Siyun He},
title = {Medical Visual Question Answering Dataset for LoRA Fine-tuning PaliGemma},
year = 2025,
howpublished = {Hugging Face: siyunhe/medical-pilagemma-lora}
}
4 commits