Youran Li commited on
Commit
aafaa4d
·
verified ·
1 Parent(s): c160b4f

Upload BC dataset splits and detailed data card

Browse files
Files changed (3) hide show
  1. .gitattributes +1 -0
  2. README.md +121 -17
  3. dataset.csv +3 -0
.gitattributes CHANGED
@@ -61,3 +61,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
61
  test.csv filter=lfs diff=lfs merge=lfs -text
62
  train.csv filter=lfs diff=lfs merge=lfs -text
63
  validation.csv filter=lfs diff=lfs merge=lfs -text
 
 
61
  test.csv filter=lfs diff=lfs merge=lfs -text
62
  train.csv filter=lfs diff=lfs merge=lfs -text
63
  validation.csv filter=lfs diff=lfs merge=lfs -text
64
+ dataset.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -2,28 +2,132 @@
2
  license: unknown
3
  task_categories:
4
  - tabular-classification
5
- pretty_name: Breast Cancer DMFS Dataset
 
 
 
 
 
 
 
 
 
 
6
  ---
7
 
8
- # Breast Cancer DMFS Dataset
9
 
10
- Derived from Bioconductor genefu.
11
 
12
- ## Task
13
- Binary classification of distant metastasis-free survival (DMFS).
14
 
15
- ## Splits
16
 
17
- | Split | N | Positives | Positive Rate |
18
- |---|---:|---:|---:|
19
- | Train | 278 | 75 | 0.2698 |
20
- | Validation | 60 | 16 | 0.2667 |
21
- | Test | 60 | 17 | 0.2833 |
22
 
23
- ## Preprocessing
24
- - Merged using `sample_id`
25
- - Stratified 70/15/15 split
26
- - Fixed random seed
27
 
28
- ## Source
29
- https://www.bioconductor.org/packages//2.10/bioc/vignettes/genefu/inst/doc/genefu.pdf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  license: unknown
3
  task_categories:
4
  - tabular-classification
5
+ task_ids:
6
+ - binary-classification
7
+ tags:
8
+ - healthcare
9
+ - breast-cancer
10
+ - gene-expression
11
+ - uncertainty-quantification
12
+ - clinical-prediction
13
+ pretty_name: Breast Cancer DMFS Gene Expression Dataset
14
+ size_categories:
15
+ - n<1K
16
  ---
17
 
18
+ # Breast Cancer DMFS Gene Expression Dataset
19
 
20
+ ## Dataset Summary
21
 
22
+ This dataset is derived from the Bioconductor `genefu` breast cancer gene expression resources and is formatted for binary classification of distant metastasis-free survival (DMFS) event occurrence.
 
23
 
24
+ The dataset contains gene expression features paired with a binary clinical outcome label. It represents a small-sample, high-dimensional prediction setting, making it useful for evaluating predictive uncertainty and model robustness under limited-data conditions.
25
 
26
+ ## Source Data
 
 
 
 
27
 
28
+ Original source:
 
 
 
29
 
30
+ - Bioconductor `genefu` package
31
+ - Documentation: https://www.bioconductor.org/packages//2.10/bioc/vignettes/genefu/inst/doc/genefu.pdf
32
+
33
+ ## Prediction Task
34
+
35
+ The prediction task is binary classification.
36
+
37
+ Target variable:
38
+
39
+ - `dmfs_label`
40
+
41
+ Label definition:
42
+
43
+ - `1`: DMFS event occurred
44
+ - `0`: No DMFS event occurred
45
+
46
+ ## Dataset Files
47
+
48
+ This repository contains the following files:
49
+
50
+ - `train.csv`: training split
51
+ - `validation.csv`: validation split
52
+ - `test.csv`: test split
53
+ - `dataset.csv`: full merged dataset containing features and labels
54
+
55
+ Each split file contains:
56
+
57
+ - Gene expression features
58
+ - `dmfs_label`, the binary outcome label
59
+
60
+ ## Dataset Statistics
61
+
62
+ | Split | N | Negatives | Positives | Positive Rate |
63
+ |---|---:|---:|---:|---:|
64
+ | Train | 278 | 203 | 75 | 0.2698 |
65
+ | Validation | 60 | 44 | 16 | 0.2667 |
66
+ | Test | 60 | 43 | 17 | 0.2833 |
67
+ | Total | 398 | 290 | 108 | 0.2714 |
68
+
69
+ Additional dataset information:
70
+
71
+ - Number of samples: 398
72
+ - Number of input features: 22283
73
+ - Feature type: continuous gene expression values
74
+ - Target type: binary label
75
+
76
+ ## Data Processing Pipeline
77
+
78
+ The released dataset was generated using the following preprocessing procedure:
79
+
80
+ 1. Loaded the cohort file containing `sample_id` and `dmfs_label`
81
+ 2. Loaded the feature matrix from `dataset.csv`
82
+ 3. Merged features and labels using `sample_id`
83
+ 4. Randomly shuffled the merged dataset using `random_state=123`
84
+ 5. Removed `sample_id` from the modeling features
85
+ 6. Split the data into train, validation, and test sets using a 70/15/15 split
86
+ 7. Stratified both split steps by `dmfs_label`
87
+ 8. Used `random_state=132` for reproducible train/validation/test splitting
88
+
89
+ No feature selection, normalization, dimensionality reduction, or imputation was applied in this released version.
90
+
91
+ ## Intended Use
92
+
93
+ This dataset is intended for research on:
94
+
95
+ - Binary clinical prediction
96
+ - Uncertainty quantification
97
+ - Decision-aware model evaluation
98
+ - Risk-coverage analysis
99
+ - Small-sample, high-dimensional biomedical machine learning
100
+
101
+ ## Out-of-Scope Use
102
+
103
+ This dataset should not be used for direct clinical decision-making, diagnosis, prognosis, or treatment selection without external validation and appropriate clinical oversight.
104
+
105
+ ## Limitations
106
+
107
+ Important limitations include:
108
+
109
+ - Small sample size
110
+ - High-dimensional feature space
111
+ - Potential risk of overfitting
112
+ - Retrospective data source
113
+ - Possible label noise in clinical outcome annotation
114
+ - Limited generalizability without external validation
115
+
116
+ ## Ethical Considerations
117
+
118
+ This dataset is derived from publicly available research data. It does not contain directly identifiable patient information in this release. However, because it is biomedical data, users should handle it responsibly and avoid using it for clinical deployment without further validation.
119
+
120
+ ## Reproducibility
121
+
122
+ The train/validation/test splits were generated using fixed random seeds:
123
+
124
+ - Shuffle seed: `123`
125
+ - Split seed: `132`
126
+ - Split ratio: 70% train, 15% validation, 15% test
127
+ - Stratification variable: `dmfs_label`
128
+
129
+ ## Citation
130
+
131
+ If you use this dataset, please cite the original Bioconductor `genefu` resource and the associated source publications.
132
+
133
+ You may also cite this dataset repository if used as part of an uncertainty quantification benchmark.
dataset.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b17e9a2fc5e4907fb330528e13e3d2ff6def40bac90c7c62545aafd88965bb2
3
+ size 149964982