Using cross-validation when computing RDMs#

This example demonstrates how to perform cross-validation when computing dissimilarity matrices (RDMs). When the data has repeated measurements of the same stimulus type, cross-validation can be used to provide much more robust distance estimates between stimulus types. Repeated measurements can for example be actual repetitions of the same stimulus within the same recording, or recordings on multiple volunteers with the same stimuli.

The dataset will be the kiloword dataset [1]: approximately 1,000 words were presented to 75 participants in a go/no-go lexical decision task while event-related potentials (ERPs) were recorded.

This dataset as provided does not have repeated measurements of the same stimuli. To illustrate cross-validation, we will treat words with the same number of letters as being repeated measurements of the same stimulus type.

# Import required packages
import mne
import mne_rsa

MNE-Python contains a build-in data loader for the kiloword dataset. We use it here to read it as 960 epochs. Each epoch represents the brain response to a single word, averaged across all the participants. For this example, we speed up the computation, at a cost of temporal precision, by downsampling the data from the original 250 Hz. to 100 Hz.

data_path = mne.datasets.kiloword.data_path(verbose=True)
epochs = mne.read_epochs(data_path / "kword_metadata-epo.fif")
epochs = epochs.resample(100)
Reading /l/vanvlm1/mne_data/MNE-kiloword-data/kword_metadata-epo.fif ...
Isotrak not found
    Found the data of interest:
        t =    -100.00 ...     920.00 ms
        0 CTF compensation matrices available
Adding metadata with 8 columns
960 matching events found
No baseline correction applied
0 projection items activated

The epochs object contains a .metadata field that contains information about the 960 words that were used in the experiment. Let’s have a look at the metadata for the 10 random words:

epochs.metadata.sample(10)
WORD Concreteness WordFrequency OrthographicDistance NumberOfLetters BigramFrequency ConsonantVowelProportion VisualComplexity
26 boil 5.250000 2.100371 1.50 4.0 363.250000 0.500000 58.557164
622 trauma 3.350000 1.672098 2.75 6.0 549.666667 0.500000 66.885608
160 extreme 2.450000 2.866287 2.70 7.0 449.571429 0.571429 69.421031
808 fable 4.300000 1.505150 1.65 5.0 382.800000 0.600000 65.639931
474 magnolia 5.750000 1.414973 3.60 8.0 455.125000 0.500000 69.486058
919 district 4.200000 2.835056 2.55 8.0 859.750000 0.750000 54.404071
571 quirk 2.947368 1.255273 1.85 5.0 206.600000 0.600000 59.921672
521 lava 6.050000 1.806180 1.85 4.0 275.750000 0.500000 62.325214
147 century 3.900000 3.513351 2.55 7.0 438.428571 0.571429 60.833064
770 music 4.150000 3.378761 2.00 5.0 394.000000 0.600000 66.258200


The kiloword dataset as provided does not have repeated measurements of the same stimuli. To illustrate cross-validation, we will treat words with the same number of letters as being repeated measurements of the same stimulus type.

To denote which epochs are repetitions of the same stimulus, we create a list y that contains integer labels for each epoch. Repetitions of the same stimulus have the same label in the y list. This scheme is lifted from the machine learning literature (and the Scikit-Learn API). In this example, we use the number of letters in the stimulus words as the labels for the epochs.

y = epochs.metadata.NumberOfLetters.astype(int)

Many high-level functions in the MNE-RSA module can take the y list as a parameter to enable cross-validation. Notably the functions for performing RSA and computing RDMs. In this example, we will restrict the analysis to computing RDMs using a spatio-temporal searchlight on the sensor-level data.

rdms = mne_rsa.rdm_epochs(
    epochs,  # The EEG data
    y=y,  # Set labels to enable cross validation
    n_folds=5,  # Number of folds to use during cross validation
    dist_metric="sqeuclidean",  # Distance metric to compute the RDMs
    spatial_radius=0.45,  # Spatial radius of the searchlight patch in meters.
    temporal_radius=0.05,  # Temporal radius of the searchlight path in seconds.
    tmin=0.15,
    tmax=0.25,
)  # To save time, only analyze this time interval

Plotting the cross-validated RDMs

mne_rsa.plot_rdms_topo(rdms, epochs.info)
Time point: 0
Creating spatio-temporal searchlight patches

<Figure size 640x480 with 29 Axes>

For performance reasons, the low-level functions of MNE-RSA do not take a y list for cross-validation. Instead, they require the data to be already split into folds. The create_folds() function can create these folds.

X = epochs.get_data()
y = epochs.metadata.NumberOfLetters.astype(int)
folds = mne_rsa.create_folds(X, y, n_folds=5)

rdm = mne_rsa.compute_rdm_cv(folds, metric="euclidean")
mne_rsa.plot_rdms(rdm)
plot cross validation
/m/home/home4/45/vanvlm1/data/projects/mne-rsa/examples/plot_cross_validation.py:95: FutureWarning: The current default of copy=False will change to copy=True in 1.7. Set the value of copy explicitly to avoid this warning
  X = epochs.get_data()

<Figure size 200x200 with 2 Axes>

Total running time of the script: (0 minutes 1.883 seconds)

Gallery generated by Sphinx-Gallery