Datasets:
File size: 5,069 Bytes
86dc8e6 3e51ceb 33d6ca6 10b3f3b 4f3dc92 629baed 10b3f3b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | ---
license: apache-2.0
task_categories:
- visual-question-answering
language:
- en
tags:
- medical
- vision
- multimodal
---
# Medical-Vision: High-Quality Medical Visual Question Answering Dataset (Aquiles-ai/Medical-Vision)
## Dataset Description
**Medical-Vision** is a curated dataset designed for Visual Question Answering (VQA) in medical contexts. This dataset combines high-quality medical images with corresponding questions and expert answers, making it ideal for training and evaluating vision-language models in healthcare applications.
### Key Features
- **8,035 high-quality examples**
- **Diverse medical imaging modalities** (X-rays, CT scans, MRI, pathology slides, etc.)
- **Natural question-answer pairs** covering clinical interpretations, diagnoses, and medical descriptions
- **Carefully curated and preprocessed** from multiple authoritative sources
- **Randomly shuffled** to prevent training biases
## Dataset Structure
### Data Fields
- `image`: PIL Image object containing the medical image
- `question`: String with the medical question about the image
- `answer`: String with the expert answer or description
### Data Splits
| Split | Examples |
|-------|----------|
| train | 8,035 |
## Usage
### Loading the Dataset
```python
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("Aquiles-ai/Medical-Vision")
# Access the training split
train_data = dataset['train']
# View dataset info
print(f"Number of examples: {len(train_data)}")
print(f"Features: {train_data.features}")
```
### Example Usage
```python
from datasets import load_dataset
from PIL import Image
import matplotlib.pyplot as plt
# Load dataset
dataset = load_dataset("Aquiles-ai/Medical-Vision")
# Get a random example
example = dataset['train'][0]
# Display the image
plt.figure(figsize=(10, 6))
plt.imshow(example['image'])
plt.axis('off')
plt.title('Medical Image')
plt.show()
# Print Q&A
print(f"Question: {example['question']}")
print(f"\nAnswer: {example['answer']}")
```
**Output Example:**
```
Question: What do you see in this image? Describe it medically.
Answer: The chest X-ray shows bilateral infiltrates consistent with
pulmonary edema. There is also cardiomegaly with an enlarged cardiac
silhouette. The costophrenic angles are preserved, and no pleural
effusion is visible.
```
## Applications
This dataset is suitable for:
- **Medical Visual Question Answering**: Training models to answer questions about medical images
- **Clinical Decision Support**: Developing AI assistants for radiologists and clinicians
- **Medical Education**: Creating interactive learning tools for medical students
- **Vision-Language Models**: Fine-tuning multimodal models (LLaVA, Qwen-VL, Asclepio, etc.)
- **Medical Image Captioning**: Generating descriptive captions for medical images
## Dataset Creation
### Quality Assurance
- Manual verification of image-question-answer alignment
- Removal of duplicates and low-quality examples
- Validation of image loading and accessibility
- Consistency checks across all data fields
## Considerations for Use
### Intended Use
This dataset is intended for:
- Research in medical AI and computer vision
- Development of clinical decision support tools
- Educational purposes in medical AI
- Fine-tuning vision-language models for healthcare
### Limitations
- **Not for clinical diagnosis**: This dataset is for research and development only
- **Language**: Currently only available in English
- **Image quality**: Varies across source datasets
- **Medical scope**: May not cover all medical specialties equally
- **Requires expert validation**: Any clinical application requires validation by medical professionals
### Ethical Considerations
- All images are from publicly available medical datasets
- No patient identifiable information (PII) is included
- Users should follow appropriate ethical guidelines when deploying models trained on this data
- Medical AI outputs should always be reviewed by qualified healthcare professionals
## Citation
If you use this dataset in your research, please cite:
```bibtex
@dataset{medical_vision_2025,
title={Medical-Vision: High-Quality Medical Visual Question Answering Dataset (Aquiles-ai/Medical-Vision)},
author={Aquiles-ai},
year={2025},
publisher={Hugging Face},
url={https://huggingface.co/datasets/Aquiles-ai/Medical-Vision}
}
```
## License
This dataset is released under the Apache 2.0 License. Please refer to individual source datasets for their specific licensing terms.
## Contact
For questions, issues, or contributions, please open an issue on the dataset repository or contact the maintainers.
- **More about [Aquiles-ai](https://aquiles-ai.vercel.app).**
- **Aquiles-ai on [GitHub](https://github.com/Aquiles-ai).**
- **Our collections at [HuggingFace](https://huggingface.co/Aquiles-ai/collections).**
**Disclaimer**: This dataset is provided for research and educational purposes only. It should not be used as a substitute for professional medical advice, diagnosis, or treatment. |