File size: 1,784 Bytes
ed99192
 
 
 
 
 
 
 
 
 
 
 
 
 
af9c294
 
ed99192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6246884
458ae15
ed99192
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
---
license: apache-2.0
task_categories:
  - visual-question-answering
tags:
  - medical
  - synthvision
  - openmed
size_categories:
  - 100K<n<1M
---

# synthvision-seeds

![SynthVision](synthvision_featured.png)

Seed records from 4 open medical image datasets

**Records**: 119,137

## About

Seed dataset for the [SynthVision pipeline](https://huggingface.co/blog/OpenMed/synthvision). Contains 119,137 records aggregated from 4 open medical image datasets:

| Source | Records | Modality |
|--------|---------|----------|
| [eltorio/ROCO-radiology](https://huggingface.co/datasets/eltorio/ROCO-radiology) | 65,393 | Radiology |
| [OpenMed/multicare-images](https://huggingface.co/datasets/OpenMed/multicare-images) | 50,000 | Mixed |
| [flaviagiammarino/path-vqa](https://huggingface.co/datasets/flaviagiammarino/path-vqa) | 3,430 | Pathology |
| [flaviagiammarino/vqa-rad](https://huggingface.co/datasets/flaviagiammarino/vqa-rad) | 314 | Radiology |

Images are deduplicated by SHA-256 hash. Each record contains an image path, source dataset ID, modality, and any available metadata (captions or Q&A pairs).

## Schema

```
id: str              # unique record ID
image: str           # relative image path
source: str          # source dataset name
modality: str        # imaging modality
metadata: dict       # captions, Q&A pairs, or labels
```

## Loading

```python
from datasets import load_dataset

ds = load_dataset("OpenMed/synthvision-seeds")
```

## Links

- [SynthVision blog post](https://huggingface.co/blog/OpenMed/synthvision)
- [Source code](https://github.com/openmed-labs/synthvision)
- [All SynthVision artifacts](https://huggingface.co/collections/OpenMed/synthvision-69baac655b557943aa1babd3)
- [OpenMed on Hugging Face](https://huggingface.co/OpenMed)