├── .gitattributes ├── .gitignore ├── Icon ├── README.md ├── code ├── Euclidean_decode.py ├── SVM_decode.m ├── SVM_decode.py ├── helpers │ ├── chanlocs_bva32.mat │ ├── chanlocs_hcgsn129.mat │ ├── dir2.m │ ├── includedchans_bva32.mat │ └── includedchans_hcgsn129.mat ├── run_MVPA_decoding.m └── run_MVPA_decoding.py ├── data ├── Adults_all.mat ├── Adults_included.mat ├── Infants_all.mat ├── Infants_included.mat └── README.md └── ex_accuracyplot.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/.gitignore -------------------------------------------------------------------------------- /Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /code/Euclidean_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/Euclidean_decode.py -------------------------------------------------------------------------------- /code/SVM_decode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/SVM_decode.m -------------------------------------------------------------------------------- /code/SVM_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/SVM_decode.py -------------------------------------------------------------------------------- /code/helpers/chanlocs_bva32.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/helpers/chanlocs_bva32.mat -------------------------------------------------------------------------------- /code/helpers/chanlocs_hcgsn129.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/helpers/chanlocs_hcgsn129.mat -------------------------------------------------------------------------------- /code/helpers/dir2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/helpers/dir2.m -------------------------------------------------------------------------------- /code/helpers/includedchans_bva32.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/helpers/includedchans_bva32.mat -------------------------------------------------------------------------------- /code/helpers/includedchans_hcgsn129.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/helpers/includedchans_hcgsn129.mat -------------------------------------------------------------------------------- /code/run_MVPA_decoding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/run_MVPA_decoding.m -------------------------------------------------------------------------------- /code/run_MVPA_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/code/run_MVPA_decoding.py -------------------------------------------------------------------------------- /data/Adults_all.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/data/Adults_all.mat -------------------------------------------------------------------------------- /data/Adults_included.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/data/Adults_included.mat -------------------------------------------------------------------------------- /data/Infants_all.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/data/Infants_all.mat -------------------------------------------------------------------------------- /data/Infants_included.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/data/Infants_included.mat -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/data/README.md -------------------------------------------------------------------------------- /ex_accuracyplot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BayetLab/infant-EEG-MVPA-tutorial/HEAD/ex_accuracyplot.jpg --------------------------------------------------------------------------------