EEG-ExPy
EEG-ExPy copied to clipboard
Add resting state EEG experiments
PR to make a new experiment class eegnb.experiments.resting_state which includes "resting"-type tasks.
Progress:
- There is a class for
rsexperiments.
Issues:
- The
BaseExperimentclass handles theitiandsoabetween stimuli such that an iteration of events is assigned to one block, and does thewin.flip()between trials. This causes the third and later beeps to not come through correctly.
Solution: either
- Fix the BaseClass such that parts of the
iti/soa/block design are infer-able using added higher-level input. - OR, base it off of
aob.pywherein we do not use abinomialdistribution, but rather a repetitive 0,1,0,1 stimulus parameter. -
Hotfix in the meantime: The
rs.RestingStateexperiment overrides theload_stimulus()andpresent_stimulus()classes and even creates a customrun_ts()method to run the experiment. Will be reverted after the new implementation is brought forward.
@tmorshed what is the future of this PR? Is it close to completion? Were there some structural issues with it still?