Machine Learning Tutorial #2: The Haxby Dataset
Overview
During the 1990s, fMRI studies focused on activation - which region of the brain responded to particular stimuli. fMRI was a new method, and researchers were able to use it to non-invasively map which regions of the brain responded to touch, pictures, noises, and other basic stimuli. These experiments measured the amplitude of the BOLD response to each of the different stimuli, and then compared the amplitudes between conditions to see which one elicited greater brain activity.
In 2001, James Haxby conducted an experiment that instead focused on patterns of activity instead of the amplitude itself - for example, certain stimuli may elicit a specific pattern that can be detected by a classifier. If that pattern is consistent and unique, we will be able to distinguish that pattern from that elicited by another stimulus.
Downloading the Data
The dataset can be downloaded here from the OpenNeuro website. If clicking on the Download button doesn’t work, use the AWS option by following the instructions located here, and then typing:
aws s3 sync --no-sign-request s3://openneuro.org/ds000105 ds000105-download/
Once you have downloaded the data, move it to your Desktop and rename it by typing:
mv ~/Downloads/ds000105-download ~/Desktop/Haxby_Data
Video
To see how to download the data, click here
Next Steps
Now that you have downloaded the data, we are ready to preprocess it using SPM. To see how to do that, click the Next
button.