nm000225 NEMAR-native dataset
PhysioNet 2018 Challenge: Sleep Arousal Detection PSG (Training)
A polysomnographic dataset comprising 1,983 overnight sleep recordings from Massachusetts General Hospital, including 994 training subjects with expert annotations and 989 test subjects. The dataset was created for the PhysioNet/Computing in Cardiology Challenge 2018 and contains 13 channels of physiological signals (EEG, EOG, EMG, respiratory, SpO2, ECG) sampled at 200 Hz, with annotations for sleep stages, respiratory events, and arousal types in the training set.
AI-generated description, may include mistakesLoading demographics…
Coming soon. Per-file data-quality summaries are precomputed by the NEMAR processing pipeline. The static aggregate is on the way — tracked at nemar-cli#511.
Files
How to use the data (for agentic research) license, citation, download commands, Zarr access
What it is
- Modalities
- EEG
- Participants
- 1983
- Size
- 401 GB
- Tasks
- sleep
- HED version
- 8.2.0
License and terms
- License
- Open Data Commons Attribution License v1.0
- Recommended citation
- Ghassemi, M. M., Moody, B. E., Lehman, L. H., Song, C., Li, Q., Sun, H., Mark, R. G., Westover, M. B., & Clifford, G. D. (2026). PhysioNet 2018 Challenge: Sleep Arousal Detection PSG (Training) (Version v1.1.0) [Data set]. NEMAR. https://doi.org/10.82901/nemar.nm000225
- Reference
- https://doi.org/10.22489/CinC.2018.049
Where the bytes are
- Latest version (always current)
- https://data.nemar.org/nm000225/latest/
- This version (v1.1.0)
- https://data.nemar.org/nm000225/v1.1.0/
How to download
- The dataset
-
nemar dataset download nm000225Clones and fetches in one step. Content under stimuli/ and derivatives/ is skipped by default because those trees can be large; add --stimuli --derivatives for the whole thing. - A subset, one step
-
nemar dataset download nm000225 --subjects sub-01,02Also filters by --sessions, --tasks, --runs, --datatypes, --include and --exclude. - A subset, step 1
-
nemar dataset clone nm000225Clones git-annex pointers only; fetches no file content. Creates ./nm000225. - A subset, step 2
-
cd nm000225The get command below reads the clone's annex, so it only works from inside the clone. - A subset, step 3
-
nemar dataset get <files>Pulls the files you actually need. Skips stimuli/ and derivatives/ unless the path you ask for is under one of them. - One small file
- https://data.nemar.org/nm000225/v1.1.0/participants.tsv A direct HTTPS fetch works for any single file.
Assess fit without downloading
- Participants table
- https://data.nemar.org/nm000225/v1.1.0/participants.tsv
- Dataset description
- https://data.nemar.org/nm000225/v1.1.0/dataset_description.json
- Directory listing
- https://data.nemar.org/nm000225/v1.1.0/?format=json
- Catalog record
- https://api.nemar.org/datasets/nm000225
Working with the Zarr copy
- 1. Start at the index
- https://zarr.nemar.org/nm000225/zarr/index.json The mandatory entry point. Never hardcode a bucket path.
- 2. Pick a store entry
-
stores[].zarr, stores[].groups[].nameThese two fields exist in every index format version, so a recipe that keys on them works against the whole catalog while the back conversion is still in flight. - 3. Build the store URI
-
s3://nemar/nm000225/zarr/{store.zarr}Derivable from the store entry alone. An index at format_version 3 or later also publishes contract_base, data_base and s3_uri; use them when they are there, never require them. - 4. Open the store anonymously
-
zarr.open_group(store=..., mode="r", zarr_format=3)Anonymous FsspecStore.from_url in region us-east-2, no credentials. zarr_format=3 is required: without it zarr-python probes for Zarr v2 sidecars, and because anonymous ListBucket is denied, S3 answers a missing key with 403 rather than 404 and the open raises. - 5. Read the level-0 array
-
root[store.groups[0].name]["0"]Level 0 is the full-rate signal. Never read a view/ array for inference; those exist for display. - 6. Dequantize the samples
-
physical = digital * scale + offsetscale and offset are attributes of the level-0 array, one entry per channel; the unit is on the group's channels attribute. - 7. Slice, don't download
-
signal[0:4, 0:500]Stream a window of channels and samples; download only when you will touch most of the array. - 8. Know the HTTP contract
-
index.jsonOnly index.json is always proxied and edge-cached. A plain GET for a store object, manifest.json or events.parquet 302s to the public S3 object for non-browser clients, so follow redirects, and HEAD is never redirected. - 9. Read the attribution before reuse
-
root.attrs["nemar"]The store carries its own dataset id, DOI, license, citation and source commit. - 10. Filter for pipelines
-
has_zarr=1This is the converted filter. has_zarr_verified is the stricter one, and its result set can be empty until the daily fidelity sweep reaches a dataset; verification is reported, never a precondition for serving (nemar-cli ADR 0005).