MaziyarPanahi commited on
Commit
5c954c4
·
verified ·
1 Parent(s): 4526ee4

Revise README: unified intro, citation, public usage under openmed-community

Browse files
Files changed (1) hide show
  1. README.md +17 -10
README.md CHANGED
@@ -10,9 +10,19 @@ size_categories:
10
  - 100K<n<1M
11
  ---
12
 
13
- # MultiCaRe Images (with pixels)
14
 
15
- Per-image dataset with the actual images, captions, labels, and core metadata from MultiCaRe (Zenodo 13936721). Images are stored inside the dataset shards so you can just load and use.
 
 
 
 
 
 
 
 
 
 
16
 
17
  Highlights
18
  - 161k+ images across radiology, pathology, endoscopy, medical photographs, ophthalmic imaging, electrography, and charts.
@@ -35,9 +45,7 @@ Schema
35
  Quick start
36
  ```python
37
  from datasets import load_dataset
38
-
39
- tok = "<your HF token>" # or set HF_TOKEN env var
40
- ds = load_dataset("MaziyarPanahi/multicare-images", split="train", use_auth_token=tok)
41
 
42
  img = ds[0]["image"] # PIL.Image.Image
43
  caption = ds[0]["caption"]
@@ -48,10 +56,9 @@ img.show()
48
  Join examples
49
  ```python
50
  from datasets import load_dataset
51
- tok = "<token>"
52
- img = load_dataset("MaziyarPanahi/multicare-images", split="train", use_auth_token=tok)
53
- cas = load_dataset("MaziyarPanahi/multicare-cases", split="train", use_auth_token=tok)
54
- art = load_dataset("MaziyarPanahi/multicare-articles", split="train", use_auth_token=tok)
55
 
56
  # Example: fetch one case and its first image
57
  case = cas[0]
@@ -65,7 +72,7 @@ Splitting tips
65
  - Avoid leakage by splitting at patient_id (case) or article_id level.
66
 
67
  License
68
- - The dataset is CC-BY-4.0. Each item also retains the per-article OA license string.
69
 
70
  Cite
71
  - DOI: 10.5281/zenodo.13936721
 
10
  - 100K<n<1M
11
  ---
12
 
13
+ # MultiCaRe: Open-Source Clinical Case Dataset
14
 
15
+ MultiCaRe is an open-source, multimodal clinical case dataset built from the PubMed Central Open Access (OA) Case Report articles. It aggregates de-identified, open-access case narratives, figure images, captions, and rich article metadata across diverse specialties (radiology, pathology, surgery, ophthalmology, etc.). The data is normalized so images, cases, and articles can be joined via stable IDs.
16
+
17
+ - Source and process: OA case reports were collected from PMC; article metadata and abstracts were parsed; figures were downloaded and split into subimages when needed; captions were aligned; and image labels were curated from a hierarchical medical taxonomy (>140 classes). The dataset maps every image to its case text and article metadata, enabling powerful cross-modal workflows.
18
+ - Scale: 85k+ OA case reports, 110k+ patients mentioned, 160k+ figures/subimages (v2.0), hundreds of thousands of clinicians/researchers as authors.
19
+ - Tasks enabled: image classification (multi/multilabel), image-text retrieval, caption grounding, VQA/doc-QA, multimodal modeling, and text-only tasks (case narrative classification, retrieval, summarization).
20
+ - Citation: An Open-Source Clinical Case Dataset for Medical Image Classification and Multimodal AI Applications (MDPI DATA journal).
21
+ - Paper: https://www.mdpi.com/2306-5729/10/8/123
22
+ - Zenodo (v2.0): https://zenodo.org/records/13936721
23
+
24
+ This repository: per-image dataset with pixels
25
+ Per-image dataset with the actual images, captions, labels, and core metadata from MultiCaRe. Images are stored inside the dataset shards so you can just load and use.
26
 
27
  Highlights
28
  - 161k+ images across radiology, pathology, endoscopy, medical photographs, ophthalmic imaging, electrography, and charts.
 
45
  Quick start
46
  ```python
47
  from datasets import load_dataset
48
+ ds = load_dataset("openmed-community/multicare-images", split="train")
 
 
49
 
50
  img = ds[0]["image"] # PIL.Image.Image
51
  caption = ds[0]["caption"]
 
56
  Join examples
57
  ```python
58
  from datasets import load_dataset
59
+ img = load_dataset("openmed-community/multicare-images", split="train")
60
+ cas = load_dataset("openmed-community/multicare-cases", split="train")
61
+ art = load_dataset("openmed-community/multicare-articles", split="train")
 
62
 
63
  # Example: fetch one case and its first image
64
  case = cas[0]
 
72
  - Avoid leakage by splitting at patient_id (case) or article_id level.
73
 
74
  License
75
+ - The dataset is CC-BY-4.0. Each item also retains the per-article OA license string. Respect per-article terms when redistributing.
76
 
77
  Cite
78
  - DOI: 10.5281/zenodo.13936721