moabb.datasets.fake.FakeVirtualRealityDataset#

class moabb.datasets.fake.FakeVirtualRealityDataset(seed=None)[source]#

Fake Cattan2019_VR dataset for test purpose.

New in version 0.5.0.

get_block_repetition(paradigm, subjects, block_list, repetition_list)[source]#

Select data for all provided subjects, blocks and repetitions. Each subject has 5 blocks of 12 repetitions.

The returned data is a dictionary with the following structure:

data = {'subject_id' :
            {'session_id':
                {'run_id': raw}
            }
        }

See also

BaseDataset.get_data, Cattan2019_VR.get_block_repetition

Parameters:
  • subjects (List of int) – List of subject number

  • block_list (List of int) – List of block number (from 1 to 5)

  • repetition_list (List of int) – List of repetition number inside a block (from 1 to 12)

Returns:

data – dict containing the raw data

Return type:

Dict