.. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code or to run this example in your browser via Binder .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_02_decoding_plot_haxby_frem.py: Decoding with FREM: face vs house object recognition ========================================================= This example uses fast ensembling of regularized models (FREM) to decode a face vs house discrimination task from Haxby 2001 study. FREM uses an implicit spatial regularization through fast clustering and aggregates a high number of estimators trained on various splits of the training set, thus returning a very robust decoder at a lower computational cost than other spatially regularized methods. To have more details, see: :ref:`frem`. Load the Haxby dataset ------------------------ .. code-block:: default from nilearn.datasets import fetch_haxby data_files = fetch_haxby() # Load behavioral data import pandas as pd behavioral = pd.read_csv(data_files.session_target[0], sep=" ") # Restrict to face and house conditions conditions = behavioral['labels'] condition_mask = conditions.isin(['face', 'house']) # Split data into train and test samples, using the chunks condition_mask_train = (condition_mask) & (behavioral['chunks'] <= 6) condition_mask_test = (condition_mask) & (behavioral['chunks'] > 6) # Apply this sample mask to X (fMRI data) and y (behavioral labels) # Because the data is in one single large 4D image, we need to use # index_img to do the split easily from nilearn.image import index_img func_filenames = data_files.func[0] X_train = index_img(func_filenames, condition_mask_train) X_test = index_img(func_filenames, condition_mask_test) y_train = conditions[condition_mask_train].values y_test = conditions[condition_mask_test].values # Compute the mean epi to be used for the background of the plotting from nilearn.image import mean_img background_img = mean_img(func_filenames) Fit FREM -------------------------------------- .. code-block:: default from nilearn.decoding import FREMClassifier decoder = FREMClassifier(cv=10) # Fit model on train data and predict on test data decoder.fit(X_train, y_train) y_pred = decoder.predict(X_test) accuracy = (y_pred == y_test).mean() * 100. print("FREM classification accuracy : %g%%" % accuracy) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none /home/varoquau/dev/nilearn/nilearn/_utils/param_validation.py:191: UserWarning: Brain mask is bigger than the volume of a standard human brain. This object is probably not tuned to be used on such data. screening_percentile_ = _adjust_screening_percentile( /home/varoquau/dev/scikit-learn/sklearn/feature_selection/_univariate_selection.py:114: UserWarning: Features [10420] are constant. warnings.warn("Features %s are constant." % constant_features_idx, /home/varoquau/dev/scikit-learn/sklearn/feature_selection/_univariate_selection.py:116: RuntimeWarning: invalid value encountered in true_divide f = msb / msw FREM classification accuracy : 64.4444% Visualization of FREM weights ------------------------------------ .. code-block:: default from nilearn import plotting plotting.plot_stat_map(decoder.coef_img_["face"], background_img, title="FREM: accuracy %g%%, 'face coefs'" % accuracy, cut_coords=(-52, -5), display_mode="yz") plotting.show() .. image:: /auto_examples/02_decoding/images/sphx_glr_plot_haxby_frem_001.png :alt: plot haxby frem :class: sphx-glr-single-img FREM ensembling procedure yields an important improvement of decoding accuracy on this simple example compared to fitting only one model per fold and the clustering mechanism keeps its computational cost reasonable even on heavier examples. Here we ensembled several instances of l2-SVC, but FREMClassifier also works with ridge or logistic. FREMRegressor object is also available to solve regression problems. .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 2 minutes 31.981 seconds) .. _sphx_glr_download_auto_examples_02_decoding_plot_haxby_frem.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: binder-badge .. image:: https://mybinder.org/badge_logo.svg :target: https://mybinder.org/v2/gh/nilearn/nilearn.github.io/master?filepath=examples/auto_examples/02_decoding/plot_haxby_frem.ipynb :width: 150 px .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_haxby_frem.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_haxby_frem.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_