├── .gitattributes ├── .gitignore ├── .readthedocs.yml ├── LICENSE.md ├── README.md ├── decodanda ├── __init__.py ├── classes.py ├── imports.py ├── in_time.py ├── utilities.py └── visualize.py ├── docs ├── Makefile ├── conf.rst ├── decodanda.rst ├── make.bat ├── modules.rst ├── rebuild_docs.sh ├── requirements.txt └── source │ ├── _static │ └── custom.css │ ├── _templates │ └── localtoc.html │ ├── conf.py │ ├── decodanda.rst │ ├── index.rst │ ├── modules.rst │ └── setup.rst ├── images ├── decoding.png ├── decoding_stimulus.png ├── geometry.png ├── highdCCGP.png ├── lowdCCGP.png └── session_example.png ├── notebooks ├── CCGP.ipynb ├── decoding_in_time.ipynb ├── disentangling_confounds.ipynb ├── pseudopopulation_decoding.ipynb └── single_var_decoding.ipynb ├── setup.py ├── source ├── decodanda.rst ├── modules.rst └── setup.rst └── tests ├── all_dichotomies.py ├── balancing_confounds.py ├── divide_into_conditions.py ├── figures ├── all_dichotomies_lowd.pdf └── non_linear_classifier.pdf ├── multiclass.py ├── non_linear_classifier.py ├── parallel_test.py └── run_tests.py /.gitattributes: -------------------------------------------------------------------------------- 1 | notebooks/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/README.md -------------------------------------------------------------------------------- /decodanda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/decodanda/__init__.py -------------------------------------------------------------------------------- /decodanda/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/decodanda/classes.py -------------------------------------------------------------------------------- /decodanda/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/decodanda/imports.py -------------------------------------------------------------------------------- /decodanda/in_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/decodanda/in_time.py -------------------------------------------------------------------------------- /decodanda/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/decodanda/utilities.py -------------------------------------------------------------------------------- /decodanda/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/decodanda/visualize.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/conf.rst -------------------------------------------------------------------------------- /docs/decodanda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/decodanda.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/rebuild_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/rebuild_docs.sh -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/_static/custom.css -------------------------------------------------------------------------------- /docs/source/_templates/localtoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/_templates/localtoc.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/decodanda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/decodanda.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/docs/source/setup.rst -------------------------------------------------------------------------------- /images/decoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/images/decoding.png -------------------------------------------------------------------------------- /images/decoding_stimulus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/images/decoding_stimulus.png -------------------------------------------------------------------------------- /images/geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/images/geometry.png -------------------------------------------------------------------------------- /images/highdCCGP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/images/highdCCGP.png -------------------------------------------------------------------------------- /images/lowdCCGP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/images/lowdCCGP.png -------------------------------------------------------------------------------- /images/session_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/images/session_example.png -------------------------------------------------------------------------------- /notebooks/CCGP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/notebooks/CCGP.ipynb -------------------------------------------------------------------------------- /notebooks/decoding_in_time.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/notebooks/decoding_in_time.ipynb -------------------------------------------------------------------------------- /notebooks/disentangling_confounds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/notebooks/disentangling_confounds.ipynb -------------------------------------------------------------------------------- /notebooks/pseudopopulation_decoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/notebooks/pseudopopulation_decoding.ipynb -------------------------------------------------------------------------------- /notebooks/single_var_decoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/notebooks/single_var_decoding.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/setup.py -------------------------------------------------------------------------------- /source/decodanda.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/source/decodanda.rst -------------------------------------------------------------------------------- /source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/source/modules.rst -------------------------------------------------------------------------------- /source/setup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/source/setup.rst -------------------------------------------------------------------------------- /tests/all_dichotomies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/all_dichotomies.py -------------------------------------------------------------------------------- /tests/balancing_confounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/balancing_confounds.py -------------------------------------------------------------------------------- /tests/divide_into_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/divide_into_conditions.py -------------------------------------------------------------------------------- /tests/figures/all_dichotomies_lowd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/figures/all_dichotomies_lowd.pdf -------------------------------------------------------------------------------- /tests/figures/non_linear_classifier.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/figures/non_linear_classifier.pdf -------------------------------------------------------------------------------- /tests/multiclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/multiclass.py -------------------------------------------------------------------------------- /tests/non_linear_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/non_linear_classifier.py -------------------------------------------------------------------------------- /tests/parallel_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/parallel_test.py -------------------------------------------------------------------------------- /tests/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lposani/decodanda/HEAD/tests/run_tests.py --------------------------------------------------------------------------------