Spaces:
Configuration error
Configuration error
File size: 14,974 Bytes
4b9fd74 0971428 4b9fd74 0971428 4b9fd74 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 | # π§ͺ Lab Physiological Signal Dataset Hub
> **Organization**: `MultiModalSensing` on HuggingFace
> **Maintainer**: `@bc121381`
> **Last Updated**: 2026-04
> **Contact**: m.r.cui@utwente.nl
This repository defines the **unified data standard** for all physiological signal datasets managed by our lab. Every dataset uploaded to the organization must follow the schema and conventions described here.
---
## π Repository Index
| Dataset | Modality | Sampling Rate | Task | Owner | Access |
|---------|----------|---------------|------|-------|--------|
| e.g. [mimic-waveforms](https://huggingface.co/datasets/your-lab-org/mimic-waveforms) | ECG / ABP / SpOβ | 125 Hz | Clinical monitoring | @member-name | π Gated |
| e.g. [pamap2-activity](https://huggingface.co/datasets/your-lab-org/pamap2-activity) | IMU / HR / Temp | 100 Hz | Activity recognition | @member-name | β
Public |
| *(add your dataset here after you submit to this space)* | | | | | |
> π **Gated**: Requires PhysioNet credentialing or lab approval.
> β
**Public**: Freely accessible within the organization.
---
## π Unified Schema
All datasets share the following field definitions. Every sample (row) represents **one time-window segment** of a recording.
### Field Specification
| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `signal` | `Sequence(Sequence(float32))` | β
| Raw signal, shape `[n_channels, n_samples]` |
| `sampling_rate` | `float32` | β
| Sampling frequency in Hz |
| `modality` | `string` | β
| Signal type, e.g. `"EEG"`, `"ECG+PPG"`, `"IMU"` |
| `channel_names` | `Sequence(string)` | β
| List of channel names, e.g. `["ECG_II", "ABP"]` |
| `n_channels` | `int32` | β
| Number of channels |
| `n_samples` | `int32` | β
| Number of time points per channel |
| `unit` | `string` | β
| Physical unit(s), e.g. `"uV"`, `"mV+mmHg+%"` |
| `subject_id` | `string` | β
| Anonymized subject identifier |
| `session_id` | `string` | β
| Recording session identifier |
| `trial_id` | `string` | β
| Segment identifier within session |
| `start_time_sec` | `float64` | β
| Segment start time relative to recording onset (seconds) |
| `label` | `string` | β
| Task label (see per-dataset definition) |
| `label_scheme` | `string` | β
| Label semantics, e.g. `"sleep_stage"`, `"physical_activity"` |
| `extra` | `string` (JSON) | β
| Additional metadata as JSON string (use `{}` if none) |
### HuggingFace Feature Definition
Copy this into your `convert.py` as the canonical feature spec:
```python
from datasets import Features, Sequence, Value
LAB_FEATURES = Features({
"signal": Sequence(Sequence(Value("float32"))),
"sampling_rate": Value("float32"),
"modality": Value("string"),
"channel_names": Sequence(Value("string")),
"n_channels": Value("int32"),
"n_samples": Value("int32"),
"unit": Value("string"),
"subject_id": Value("string"),
"session_id": Value("string"),
"trial_id": Value("string"),
"start_time_sec": Value("float64"),
"label": Value("string"),
"label_scheme": Value("string"),
"extra": Value("string"),
})
```
---
## π Key Design Principles
### 1. Original Sampling Rate is Always Preserved
Do **not** resample during dataset creation. Store signals at their native sampling rate. Resampling is done at load time, per experiment requirements.
```
β
Store at native rate β resample in DataLoader
β Do not permanently downsample/upsample the stored data
```
### 2. Channel Names, Not Positions
Always use `channel_names` for indexing. Never assume a channel exists at a fixed index position across datasets.
```python
# β
Correct
idx = sample["channel_names"].index("ECG_II")
ecg = np.array(sample["signal"])[idx]
# β Wrong
ecg = np.array(sample["signal"])[0] # position may differ across datasets
```
### 3. Label Semantics Are Dataset-Specific
The same `label` value (e.g., `"1"`) may mean different things across datasets. Always use `label` together with `label_scheme`.
```python
{"label": "1", "label_scheme": "sleep_stage"} # β N1 sleep
{"label": "1", "label_scheme": "physical_activity"} # β sitting
{"label": "1", "label_scheme": "arrhythmia"} # β AFib
```
### 4. Extend with `extra`, Don't Break the Schema
Dataset-specific metadata that doesn't fit the common fields goes into the `extra` JSON string field. This keeps the schema stable while allowing flexibility.
```python
import json
extra = json.dumps({
"age": 67,
"gender": "M",
"icu_type": "MICU",
"filter_applied": "0.5-40Hz bandpass",
})
```
---
## π Directory Structure
Each dataset repository follows this structure:
```
MultiModalSensing/<dataset-name>/
βββ train/
β βββ data-00000-of-00002.parquet
β βββ data-00001-of-00002.parquet
βββ validation/
β βββ data-00000-of-00001.parquet
βββ test/
β βββ data-00000-of-00001.parquet
βββ README.md β Dataset Card (required)
βββ convert.py β Conversion script (required, for reproducibility)
```
---
## π How to Load Datasets
### Basic Loading
```python
from datasets import load_dataset
import numpy as np
# Load any lab dataset with the same interface
ds = load_dataset("your-lab-org/pamap2-activity", split="train")
sample = ds[0]
signal = np.array(sample["signal"]) # shape: (n_channels, n_samples)
sr = sample["sampling_rate"] # e.g. 100.0
chs = sample["channel_names"] # e.g. ["acc_x", "acc_y", ...]
label = sample["label"] # e.g. "running"
```
### Using the Shared Loader (Recommended)
Install the lab utility package and use the unified loader, which handles resampling and channel selection automatically:
```python
# pip install git+https://github.com/MultiModalSensing/lab-utils.git
from lab_utils import load_lab_dataset
# Load with optional resampling and channel selection
ds = load_lab_dataset(
name = "pamap2-activity",
split = "train",
channels = ["acc_x", "acc_y", "acc_z"], # select channels by name
)
# Returns {"x": np.ndarray, "y": str, "sr": float}
sample = ds[0]
print(sample["x"].shape) # (3, n_samples)
```
### Accessing Gated Datasets (e.g., MIMIC)
```bash
# Step 1: Log in to HuggingFace
huggingface-cli login
# Step 2: Request access via the dataset page (one-time)
# https://huggingface.co/datasets/your-lab-org/mimic-waveforms
```
```python
# Step 3: Load as normal (authentication handled automatically)
ds = load_dataset("your-lab-org/mimic-waveforms", split="train")
```
---
## β How to Contribute a New Dataset
Follow these 4 steps to add your dataset to the organization.
### Step 1: Write `convert.py`
Use the template below and adapt to your raw data format:
```python
"""
convert.py β Template for lab dataset conversion
Replace all <PLACEHOLDERS> with your dataset's specifics.
"""
import json
import numpy as np
import pandas as pd
from datasets import Dataset
from lab_schema import LAB_FEATURES # import from lab-utils
DATASET_NAME = "<your-dataset-name>"
MODALITY = "<EEG|ECG|IMU|PPG|...>"
CHANNEL_NAMES = ["<ch1>", "<ch2>"] # full list of channels
SAMPLING_RATE = <Hz> # native sampling rate (float)
UNIT = "<uV|mV|m/s2|...>"
LABEL_SCHEME = "<sleep_stage|physical_activity|arrhythmia|...>"
WINDOW_SEC = 5.0 # window length in seconds
OVERLAP_SEC = 2.5 # overlap between windows
LABEL_MAP = {
<raw_label_value>: "<semantic_label>",
# e.g. 1: "walking", 2: "running", ...
}
def segment(signal_2d, sr, window_sec, overlap_sec):
"""Sliding window segmentation. signal_2d: (n_channels, n_total_samples)"""
win = int(window_sec * sr)
step = int((window_sec - overlap_sec) * sr)
segs = []
for start in range(0, signal_2d.shape[1] - win + 1, step):
segs.append(signal_2d[:, start:start + win])
return segs # list of (n_channels, win) arrays
def convert_subject(raw_path, subject_id):
"""Load one subject's raw file and return a list of sample dicts."""
# ββ load raw data ββββββββββββββββββββββββββββββββββββββββββββββ
df = pd.read_csv(raw_path) # adapt as needed
signal_2d = df[CHANNEL_NAMES].values.T.astype(np.float32)
labels_ts = df["label"].values # one label per time step
segments = segment(signal_2d, SAMPLING_RATE, WINDOW_SEC, OVERLAP_SEC)
win = int(WINDOW_SEC * SAMPLING_RATE)
samples = []
for i, seg in enumerate(segments):
start_sample = i * int((WINDOW_SEC - OVERLAP_SEC) * SAMPLING_RATE)
window_labels = labels_ts[start_sample : start_sample + win]
majority_label = LABEL_MAP.get(
pd.Series(window_labels).mode()[0], "unknown"
)
samples.append({
"signal": seg.tolist(),
"sampling_rate": float(SAMPLING_RATE),
"modality": MODALITY,
"channel_names": CHANNEL_NAMES,
"n_channels": seg.shape[0],
"n_samples": seg.shape[1],
"unit": UNIT,
"subject_id": str(subject_id),
"session_id": "session_1",
"trial_id": f"segment_{i:06d}",
"start_time_sec": round(start_sample / SAMPLING_RATE, 6),
"label": majority_label,
"label_scheme": LABEL_SCHEME,
"extra": json.dumps({}), # add subject metadata here
})
return samples
if __name__ == "__main__":
all_samples = []
for subject_id in range(1, 10): # adapt to your subject list
all_samples += convert_subject(f"data/subject{subject_id}.csv", subject_id)
ds = Dataset.from_list(all_samples, features=LAB_FEATURES)
# Optional: train/val/test split
ds = ds.train_test_split(test_size=0.2, seed=42)
ds.push_to_hub(f"your-lab-org/{DATASET_NAME}")
print(f"β
Uploaded {len(all_samples)} samples to your-lab-org/{DATASET_NAME}")
```
### Step 2: Create a Dataset Card (`README.md`)
Every dataset repo must have a `README.md` using the template in the section below.
### Step 3: Push to Hub
```bash
huggingface-cli login
# Public dataset
python convert.py
# Private / gated dataset (e.g., MIMIC, clinical data)
python convert.py --private # or set via HF web UI after upload
```
### Step 4: Register in the Index
Open a PR to this README and add your dataset to the **Repository Index** table at the top.
---
## π Dataset Card Template
Copy this into your dataset's `README.md`:
```markdown
---
dataset_name: <your-dataset-name>
modality: <EEG|ECG|IMU|PPG|...>
sampling_rate: <Hz>
n_channels: <N>
task: <sleep_staging|activity_recognition|arrhythmia_detection|...>
label_scheme: <scheme_name>
n_subjects: <N>
version: 1.0.0
license: <cc-by-4.0|physionet-1.5|internal>
---
## Overview
Brief description of the dataset: source, purpose, key characteristics.
## Source
- **Original dataset**: [Name](URL)
- **Paper**: citation
- **Access**: Public / Gated / Internal
## Modality & Channels
| Index | Channel Name | Unit | Description |
|-------|-------------|------|-------------|
| 0 | `<ch_name>` | uV | <description> |
## Label Definition
| label | meaning |
|-------|---------|
| `"0"` | <class 0> |
| `"1"` | <class 1> |
**label_scheme**: `<scheme_name>`
## Splits
| Split | Subjects | Segments |
|------------|----------|----------|
| train | X | X |
| validation | X | X |
| test | X | X |
## Preprocessing
Describe all transformations applied before storage:
- Filtering: (e.g., 0.5β40 Hz bandpass, 50 Hz notch)
- Normalization: (e.g., z-score per channel per recording)
- Windowing: X-second windows, Y-second overlap
- Resampling: original rate β stored rate
> β οΈ Raw data is stored at its **native sampling rate**. Resample in your DataLoader as needed.
## Known Issues / Limitations
- List any known data quality issues
- Missing subjects, artifact channels, etc.
## Citation
\`\`\`bibtex
@dataset{...}
\`\`\`
```
---
## βοΈ Naming Conventions
| Entity | Convention | Example |
|--------|-----------|---------|
| Dataset repo name | `<source>-<modality>` (lowercase, hyphen) | `mimic-waveforms`, `pamap2-activity` |
| `subject_id` | `subject<NNN>` or original ID string | `subject101`, `p10032` |
| `session_id` | `session_<N>` or protocol name | `session_1`, `protocol_run2` |
| `trial_id` | `segment_<NNNNNN>` (zero-padded) | `segment_000042` |
| `modality` | Uppercase, `+` separator for multi-modal | `EEG`, `ECG+PPG`, `IMU+HR` |
| `label_scheme` | lowercase, underscore | `sleep_stage`, `physical_activity` |
---
## π Access Control Guidelines
| Data Type | HuggingFace Setting | Notes |
|-----------|---------------------|-------|
| Public benchmark (PAMAP2, etc.) | `public` | Fine to share openly |
| PhysioNet data (MIMIC, etc.) | `gated` | Require PhysioNet credentialing |
| Proprietary / in-house data | `private` | Lab members only; get PI approval |
| De-identified clinical data | `private` or `gated` | Check IRB terms before uploading |
> β οΈ **Never upload identifiable patient data.** When in doubt, contact the lab PI before uploading.
---
## π οΈ Common Recipes
### Resample a loaded dataset to a target frequency
```python
import scipy.signal as ss
import numpy as np
def resample_sample(sample, target_sr):
sig = np.array(sample["signal"])
orig_sr = sample["sampling_rate"]
if orig_sr == target_sr:
return sample
n_target = int(sig.shape[-1] * target_sr / orig_sr)
sig_resampled = ss.resample(sig, n_target, axis=-1)
return {**sample, "signal": sig_resampled.tolist(),
"sampling_rate": target_sr, "n_samples": n_target}
ds = ds.map(lambda x: resample_sample(x, target_sr=100))
```
### Select specific channels by name
```python
def select_channels(sample, channel_list):
chs = sample["channel_names"]
idx = [chs.index(c) for c in channel_list]
sig = np.array(sample["signal"])[idx]
return {**sample, "signal": sig.tolist(),
"channel_names": channel_list, "n_channels": len(channel_list)}
ds = ds.map(lambda x: select_channels(x, ["acc_x", "acc_y", "acc_z"]))
```
### Parse `extra` metadata
```python
import json
extras = [json.loads(s["extra"]) for s in ds]
ages = [e.get("age") for e in extras]
```
---
## π¬ Questions & Contributions
- **Bug / schema issue**: Open an issue in `MultiModalSensing/lab-utils`
- **New dataset**: Follow the contribution steps above and open a PR to this README
- **Access request**: Email `m.r.cui@utwente.nl` with your HuggingFace username |