Angelou0516 commited on
Commit
eff8c80
·
verified ·
1 Parent(s): 40b6b36

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +85 -23
README.md CHANGED
@@ -1,25 +1,87 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- - name: class_label
9
- dtype: string
10
- - name: image_id
11
- dtype: string
12
- - name: has_multifocal_lesion
13
- dtype: bool
14
- splits:
15
- - name: train
16
- num_bytes: 167665177
17
- num_examples: 780
18
- download_size: 167488624
19
- dataset_size: 167665177
20
- configs:
21
- - config_name: default
22
- data_files:
23
- - split: train
24
- path: data/train-*
25
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ task_categories:
4
+ - image-segmentation
5
+ tags:
6
+ - medical
7
+ - ultrasound
8
+ - breast
9
+ - segmentation
10
+ - busi
11
+ size_categories:
12
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
+
15
+ # BUSI — Breast Ultrasound Images Dataset
16
+
17
+ Re-hosted mirror of the Breast Ultrasound Images Dataset (Al-Dhabyani et al., 2020),
18
+ collected at Baheya Hospital, Cairo, Egypt and originally distributed via the
19
+ Cairo University Scholar page of co-author Aly Fahmy.
20
+
21
+ This mirror is intended for use with [EasyMedSeg](https://github.com/) and provides:
22
+
23
+ - A single canonical source (the original Cairo Univ. URL has unstable TLS).
24
+ - Parquet schema with one row per image and a single binary mask.
25
+ - For images with multifocal lesions, the multiple `_mask_N.png` files in the
26
+ original release are merged into one binary mask via per-pixel logical OR
27
+ (the convention adopted by the paper and by BUS-Set / Thomas et al. 2023).
28
+
29
+ ## Composition
30
+
31
+ | Class | Images | Multifocal cases |
32
+ |-------------|-------:|-----------------:|
33
+ | benign | 437 | 16 |
34
+ | malignant | 210 | 1 |
35
+ | normal | 133 | 0 |
36
+ | **Total** | **780**| **17** |
37
+
38
+ Image dimensions are variable (~190–719 px, average ~500×500 px). Source release
39
+ is from 2018; 600 female patients, ages 25–75; GE LOGIQ E9 / E9 Agile B-mode.
40
+
41
+ ## Splits
42
+
43
+ BUSI has **no official train/val/test split**. This release ships a single
44
+ `train` split. Downstream code is expected to define its own splits
45
+ (BUS-Set provides reproducible ones).
46
+
47
+ ## Schema
48
+
49
+ | Column | Type | Description |
50
+ |--------------------------|-----------|------------------------------------------------------------|
51
+ | `image` | `Image` | Source PNG (RGB) |
52
+ | `mask` | `Image` | Binary mask (`L` mode, 0/255) — OR-merged across all mask files |
53
+ | `class_label` | `string` | `"benign"` / `"malignant"` / `"normal"` |
54
+ | `image_id` | `string` | e.g., `"benign (100)"` |
55
+ | `has_multifocal_lesion` | `bool` | `True` if the source had >1 mask file |
56
+
57
+ ## Known data-quality caveats
58
+
59
+ Per Pawłowska et al. (2023, *Data in Brief*, [PMC10293973](https://pmc.ncbi.nlm.nih.gov/articles/PMC10293973/)):
60
+ - ~235 duplicated images (~19%); 8 lesions appear in both benign and malignant folders (label leakage).
61
+ - ~70 axilla (non-breast) images mis-categorized as breast.
62
+ - 295 images with overlaid annotations (calipers, doppler markers, text) intersecting the lesion ROI.
63
+ - ≥7 images contain a visible biopsy needle.
64
+
65
+ This mirror **does not modify** the source files (other than mask merging) — the
66
+ above issues are inherited as-is. Cite Pawłowska et al. when reporting cleanups.
67
+
68
+ ## License
69
+
70
+ The original authors do not state an explicit license on the Cairo Univ. page or
71
+ in the *Data in Brief* paper. Treat as **research use, with required citation**.
72
+ Kaggle uploaders have tagged copies as CC BY 4.0 (uploader-asserted, not
73
+ author-confirmed). Do not assume redistribution rights beyond research.
74
+
75
+ ## Citation
76
+
77
+ ```bibtex
78
+ @article{Aldhabyani2020BUSI,
79
+ title = {Dataset of breast ultrasound images},
80
+ author = {Al-Dhabyani, Walid and Gomaa, Mohammed and Khaled, Hussein and Fahmy, Aly},
81
+ journal = {Data in Brief},
82
+ volume = {28},
83
+ pages = {104863},
84
+ year = {2020},
85
+ doi = {10.1016/j.dib.2019.104863}
86
+ }
87
+ ```