braindecode.datasets.BaseConcatDataset¶
- class braindecode.datasets.BaseConcatDataset(list_of_ds, target_transform=None)¶
A base class for concatenated datasets. Holds either mne.Raw or mne.Epoch in self.datasets and has a pandas DataFrame with additional description.
- Parameters
- list_of_dslist
list of BaseDataset, BaseConcatDataset or WindowsDataset
- target_transformcallable | None
Optional function to call on targets before returning them.
Methods
- get_metadata()¶
Concatenate the metadata and description of the wrapped Epochs.
- Returns
- metadatapd.DataFrame
DataFrame containing as many rows as there are windows in the BaseConcatDataset, with the metadata and description information for each window.
- save(path, overwrite=False, offset=0)¶
Save datasets to files by creating one subdirectory for each dataset: path/
- 0/
0-raw.fif | 0-epo.fif description.json raw_preproc_kwargs.json (if raws were preprocessed) window_kwargs.json (if this is a windowed dataset) window_preproc_kwargs.json (if windows were preprocessed) target_name.json (if target_name is not None and dataset is raw)
- 1/
1-raw.fif | 1-epo.fif description.json raw_preproc_kwargs.json (if raws were preprocessed) window_kwargs.json (if this is a windowed dataset) window_preproc_kwargs.json (if windows were preprocessed) target_name.json (if target_name is not None and dataset is raw)
…
- Parameters
- pathstr
- Directory in which subdirectories are created to store
-raw.fif | -epo.fif and .json files to.
- overwritebool
Whether to delete old subdirectories that will be saved to in this call.
- offsetint
If provided, the integer is added to the id of the dataset in the concat. This is useful in the setting of very large datasets, where one dataset has to be processed and saved at a time to account for its original position.
- set_description(description, overwrite=False)¶
Update (add or overwrite) the dataset description.
- Parameters
- description: dict | pd.DataFrame
Description in the form key: value where the length of the value has to match the number of datasets.
- overwrite: bool
Has to be True if a key in description already exists in the dataset description.
- split(by=None, property=None, split_ids=None)¶
Split the dataset based on information listed in its description DataFrame or based on indices.
- Parameters
- bystr | list | dict
If
by
is a string, splitting is performed based on the description DataFrame column with this name. Ifby
is a (list of) list of integers, the position in the first list corresponds to the split id and the integers to the datapoints of that split. If a dict then each key will be used in the returned splits dict and each value should be a list of int.- propertystr
Some property which is listed in info DataFrame.
- split_idslist | dict
List of indices to be combined in a subset. It can be a list of int or a list of list of int.
- Returns
- splitsdict
A dictionary with the name of the split (a string) as key and the dataset as value.