The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 49, in _split_generators
import h5py
ModuleNotFoundError: No module named 'h5py'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 71, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
demo_dataset
This repository contains a curated collection of processed EEG benchmark datasets packaged for model training and evaluation.
Each dataset is stored in its own directory and follows a consistent split-based HDF5 layout:
train.h5val.h5test.h5croissant.jsoncroissant_manifest.csvmetadata_summary.json
Repository structure
Each dataset directory contains:
train.h5,val.h5,test.h5- HDF5 files containing the packaged split data.
- In most datasets,
Xstores EEG tensors andystores labels. - Some blind-test releases may omit
yin specific splits.
croissant.json- Dataset-level Croissant metadata for discoverability and validation.
croissant_manifest.csv- Split-level manifest describing file names, sample counts, channel counts, and timepoints.
metadata_summary.json- Compact summary of task type, label vocabulary, channel count, sampling rate, window length, and split sizes.
Data format
For a typical split file:
X.shape = (n_samples, n_channels, n_timepoints)y.shape = (n_samples,)when labels are available
The exact sampling rate, window length, and channel count differ by dataset and are documented in:
metadata_summary.jsoncroissant.json
Included datasets
This repository currently includes 60 packaged datasets:
AD65ADHDAwakeningAwakening_balancedBCIC2ABCIC4_1BCI_SpeechBETA_SSVEPBenchmarkSSVEPBroderick_CPBroderick_CP_128Broderick_RevBroderick_Rev_128CHB_MITCIREChineseEEG2_RA_ToneDEAPDUAL_FREQ_SSVEPDepression_restEAVEEGMATEEG_Mortality_PDEEG_SVRecExoEEG_WalkStopFACED_newHBN_EEGHFOHMCISRUC_S1ISRUC_S2ISRUC_S3LEMON_ageLEMON_extraversionLEMON_genderLongitudinal_EEG_ReliabilityMDDMODMAMonitoringErrPMusicEEGPD31PEARL_NeuroPhysionet_MIRestCogSEEDSEEDIVSEED_FRASEED_VSEED_VIGSEED_VIISHU_MISSVEPSiena_EEGSleepEDF_fullTDBRAINTUABTUEPTUEVTUSLThings_EEG2Workload
Metadata policy
The packaged metadata intentionally avoids internal mount paths, usernames, and local infrastructure identifiers.
Where possible, provenance in croissant.json points to public references such as:
- original dataset papers
- official dataset release pages
- PhysioNet / OpenNeuro / institutional dataset pages
Notes
- This repository is a processed benchmark collection, not a raw-data release.
- Temporal segmentation is dataset-specific and is not forced to be uniform across all datasets.
- Some datasets in the same family may use different window lengths if their benchmark packaging differs.
- For exact task definitions, label mappings, and window parameters, use
metadata_summary.json.
Recommended usage
- Read
metadata_summary.jsonbefore training on a dataset. - Use
croissant_manifest.csvto inspect split sizes and basic tensor dimensions. - Use
croissant.jsonif you need machine-readable dataset metadata or want to run Croissant validation.
- Downloads last month
- 277