Files changed (1) hide show
  1. README.md +162 -0
README.md CHANGED
@@ -1,3 +1,165 @@
1
  ---
2
  license: mit
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
+ task_categories:
4
+ - time-series-forecasting
5
+ language:
6
+ - en
7
+ pretty_name: Scent of Health (S-OH)
8
+ tags:
9
+ - electronic-nose
10
+ - breath-analysis
11
+ - disease-screening
12
+ - multivariate-time-series
13
+ - medical-dataset
14
+ size_categories:
15
+ - 1K<n<10K
16
  ---
17
+
18
+ # Scent of Health (S-OH) Dataset
19
+
20
+ The **Scent of Health (S-OH)** dataset is the largest public clinical electronic nose (eNose) collection for non-invasive disease screening via exhaled breath analysis. It comprises **1,234 patients** across **nine diagnostic groups** (healthy controls and eight diseases), each providing a **17-channel multivariate time series** of breath measurements.
21
+
22
+ | Property | Value |
23
+ |----------|-------|
24
+ | **Patients** | 1,234 |
25
+ | **Diagnostic groups** | 9 (healthy + 8 diseases) |
26
+ | **Time series channels** | 17 (eNose sensors) + auxiliary sensors |
27
+ | **Sampling rate** | 0.4 Hz |
28
+ | **Duration per sample** | 895 seconds (~15 minutes) |
29
+ | **Collection period** | 13 consecutive weeks |
30
+ | **Clinical sites** | 2 |
31
+
32
+ ## Diagnostic Groups
33
+
34
+ | ICD-10 Code | Diagnosis | Count |
35
+ |-------------|-----------|-------|
36
+ | Z00 | Healthy controls | 256 |
37
+ | E11 | Diabetes mellitus type II | 128 |
38
+ | K29 | Gastritis and duodenitis | 138 |
39
+ | K76 | Non-alcoholic fatty liver disease | 128 |
40
+ | B18 | Hepatitis B/C | 138 |
41
+ | C34 | Lung cancer | 100 |
42
+ | N18 | Chronic renal failure | 128 |
43
+ | J44 | COPD | 100 |
44
+ | A15 | Respiratory tuberculosis | 118 |
45
+ | **Total** | | **1,234** |
46
+
47
+ **Demographics:**
48
+ - Age range: 18–89 years (mean 53.9, std 13.4)
49
+ - Gender: 690 female (55.9%), 544 male (44.1%)
50
+
51
+ # Dataset Structure
52
+
53
+ ### File 1: `S-OH_metadata.csv`
54
+
55
+ CSV file containing patient metadata with the following columns:
56
+
57
+ | Column | Description |
58
+ |--------|-------------|
59
+ | `Patient_id` | Unique patient identifier |
60
+ | `Patient_age` | Age in years |
61
+ | `Patient_gender` | Gender (male or female) |
62
+ | `Diagnosis` | ICD-10 diagnosis code |
63
+ | `D_class` | Disease class (0–8) |
64
+ | `D_bin_class` | Binary class for one-vs-rest classification |
65
+ | `Datetime` | Collection timestamp |
66
+ | `Week` | Collection week (1–13) |
67
+ | `Site` | Clinical site (MONIKI or CRIT) |
68
+
69
+ ### File 2: `S-OH_data_dict.json`
70
+
71
+ JSON dictionary where each key is a patient ID (as string) with the following structure:
72
+
73
+ ```json
74
+ {
75
+ "patient_id": int,
76
+ "patient_diag_class": int,
77
+ "startDateTime": "ISO timestamp",
78
+ "startTimeGases": int,
79
+ "endTimeGases": int,
80
+ "durationSec": int,
81
+ "sensors": [
82
+ {
83
+ "id": "enose",
84
+ "sampleRate": 0.4,
85
+ "channels": [
86
+ {"id": "R1", "samples": [float, ...]},
87
+ {"id": "R2", "samples": [float, ...]},
88
+ ...
89
+ {"id": "R17", "samples": [float, ...]},
90
+ {"id": "humidity", "samples": [float, ...]},
91
+ {"id": "temperature", "samples": [float, ...]}
92
+ ]
93
+ },
94
+ {
95
+ "id": "ze03",
96
+ "sampleRate": 0.4,
97
+ "channels": [{"id": "0", "samples": [float, ...]}]
98
+ },
99
+ {
100
+ "id": "mhz14",
101
+ "sampleRate": 0.4,
102
+ "channels": [{"id": "0", "samples": [float, ...]}]
103
+ },
104
+ {
105
+ "id": "ze08",
106
+ "sampleRate": 0.4,
107
+ "channels": [{"id": "0", "samples": [float, ...]}]
108
+ },
109
+ {
110
+ "id": "bme280",
111
+ "sampleRate": 0.4,
112
+ "channels": [
113
+ {"id": "pressure", "samples": [float, ...]},
114
+ {"id": "temperature", "samples": [float, ...]},
115
+ {"id": "humidity", "samples": [float, ...]}
116
+ ]
117
+ }
118
+ ]
119
+ }
120
+ ```
121
+
122
+ # eNose Channels (17 channels)
123
+
124
+ The eNose sensor array consists of 17 channels printed on a single chip:
125
+
126
+ | Channel ID | Material |
127
+ |-------------|-----------|
128
+ | R1–R17 | ZnO and metal-doped ZnO (In-ZnO, Ag-ZnO, Ce-ZnO, Ni-ZnO) |
129
+
130
+
131
+ # Auxiliary Sensors
132
+
133
+ | Sensor ID | Measurements |
134
+ |-------------|-----------|
135
+ | ze03 | Ozone (O₃) |
136
+ | mhz14 | Carbon dioxide (CO₂) |
137
+ | ze08 | Carbon monoxide (CO) |
138
+ | bme280 | Pressure, temperature, humidity |
139
+
140
+ # Temporal Train/Test Splits
141
+ The dataset includes explicit temporal splits to enable drift-aware evaluation. For each disease, test weeks were selected to be temporally separated from training weeks, simulating real-world deployment conditions.
142
+
143
+ # Ethics
144
+ - The study protocol was approved by the Local Ethics Committee at Moscow Regional Research and Clinical Institute (MONIKI) and Central Research Institute of Tuberculosis (CRIT).
145
+
146
+ - All participants provided written informed consent.
147
+
148
+ # Citation
149
+ If you use this dataset in your research, please cite:
150
+ ```bibtex
151
+
152
+ ```
153
+
154
+ ## License
155
+
156
+ This dataset is released under the **MIT License**. You are free to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the dataset, subject to the following conditions:
157
+
158
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this dataset and associated documentation files (the "Dataset"), to deal in the Dataset without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Dataset, and to permit persons to whom the Dataset is furnished to do so, subject to the following conditions:
159
+ >
160
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Dataset.
161
+ >
162
+ > THE DATASET IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE DATASET OR THE USE OR OTHER DEALINGS IN THE DATASET.
163
+
164
+ #### Contact
165
+ For questions or issues, please open an issue on this repository or contact the authors (see paper for details).