Angelou0516 commited on
Commit
1b15de0
·
verified ·
1 Parent(s): a6bf5e9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +98 -34
README.md CHANGED
@@ -1,40 +1,104 @@
1
  ---
2
  dataset_info:
3
  features:
4
- - name: image
5
- dtype: image
6
- - name: mask
7
- dtype: image
8
- - name: sample_id
9
- dtype: string
10
- - name: subset
11
- dtype: string
12
- - name: labeled
13
- dtype: bool
14
  splits:
15
- - name: a_pxi_labeled
16
- num_bytes: 246471403
17
- num_examples: 850
18
- - name: a_pxi_unlabeled
19
- num_bytes: 483347041
20
- num_examples: 2650
21
- - name: c_pxi_labeled
22
- num_bytes: 14336768
23
- num_examples: 50
24
- - name: c_pxi_unlabeled
25
- num_bytes: 94739370
26
- num_examples: 450
27
- download_size: 943551164
28
- dataset_size: 838894582
29
  configs:
30
- - config_name: default
31
- data_files:
32
- - split: a_pxi_labeled
33
- path: data/a_pxi_labeled-*
34
- - split: a_pxi_unlabeled
35
- path: data/a_pxi_unlabeled-*
36
- - split: c_pxi_labeled
37
- path: data/c_pxi_labeled-*
38
- - split: c_pxi_unlabeled
39
- path: data/c_pxi_unlabeled-*
 
 
 
 
 
 
 
 
 
 
 
 
40
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: image
5
+ dtype: image
6
+ - name: mask
7
+ dtype: image
8
+ - name: sample_id
9
+ dtype: string
10
+ - name: subset
11
+ dtype: string
12
+ - name: labeled
13
+ dtype: bool
14
  splits:
15
+ - name: a_pxi_labeled
16
+ num_examples: 850
17
+ - name: a_pxi_unlabeled
18
+ num_examples: 2650
19
+ - name: c_pxi_labeled
20
+ num_examples: 50
21
+ - name: c_pxi_unlabeled
22
+ num_examples: 450
 
 
 
 
 
 
23
  configs:
24
+ - config_name: default
25
+ data_files:
26
+ - split: a_pxi_labeled
27
+ path: data/a_pxi_labeled-*
28
+ - split: a_pxi_unlabeled
29
+ path: data/a_pxi_unlabeled-*
30
+ - split: c_pxi_labeled
31
+ path: data/c_pxi_labeled-*
32
+ - split: c_pxi_unlabeled
33
+ path: data/c_pxi_unlabeled-*
34
+ license: cc-by-4.0
35
+ task_categories:
36
+ - image-segmentation
37
+ tags:
38
+ - medical-imaging
39
+ - dental
40
+ - panoramic-x-ray
41
+ - tooth-segmentation
42
+ - semi-supervised
43
+ pretty_name: STS-2D-Tooth
44
+ size_categories:
45
+ - 1K<n<10K
46
  ---
47
+
48
+ # STS-2D-Tooth
49
+
50
+ The 2D panoramic dental X-ray subset of the STS (Semi-supervised Teeth
51
+ Segmentation) multi-modal dataset, as released in
52
+ [Wang et al., *Scientific Data* **12**, 117 (2025)](https://doi.org/10.1038/s41597-024-04306-9)
53
+ and used in the MICCAI 2023 STS Challenge.
54
+
55
+ ## Composition
56
+
57
+ 4,000 panoramic X-ray images (PNG, 640x320, 3-channel grayscale-as-RGB) split
58
+ across two demographic subsets:
59
+
60
+ | Subset | Total | Labeled | Unlabeled |
61
+ |-----------------------|------:|--------:|----------:|
62
+ | A-PXI (adult) | 3,500 | 850 | 2,650 |
63
+ | C-PXI (child) | 500 | 50 | 450 |
64
+ | **Total** | 4,000 | 900 | 3,100 |
65
+
66
+ Masks are 1-bit binary tooth-region masks at the same resolution as the source
67
+ image. Annotations were initialized manually on a 300-image seed by 20 trained
68
+ dental practitioners, refined by an R2 U-Net assistant model, and quality-vetted
69
+ by 6 dentists.
70
+
71
+ ## Splits
72
+
73
+ - `a_pxi_labeled` (850) - adult panoramic X-rays with binary tooth masks
74
+ - `a_pxi_unlabeled` (2,650) - adult panoramic X-rays, no masks
75
+ - `c_pxi_labeled` (50) - paediatric panoramic X-rays with binary tooth masks
76
+ - `c_pxi_unlabeled` (450) - paediatric panoramic X-rays, no masks
77
+
78
+ For unlabeled splits the `mask` column is null.
79
+
80
+ ## Citation
81
+
82
+ ```bibtex
83
+ @article{wang2025sts,
84
+ title = {A multi-modal dental dataset for semi-supervised deep learning image segmentation},
85
+ author = {Wang, Yaqi and others},
86
+ journal = {Scientific Data},
87
+ volume = {12},
88
+ pages = {117},
89
+ year = {2025},
90
+ doi = {10.1038/s41597-024-04306-9}
91
+ }
92
+
93
+ @article{wang2024stschallenge,
94
+ title = {STS MICCAI 2023 Challenge: Grand challenge on 2D and 3D semi-supervised tooth segmentation},
95
+ author = {Wang, Yaqi and others},
96
+ journal = {arXiv:2407.13246},
97
+ year = {2024}
98
+ }
99
+ ```
100
+
101
+ ## License
102
+
103
+ CC-BY-4.0 (per the Zenodo release at
104
+ [zenodo.org/records/10597292](https://zenodo.org/records/10597292)).