├── .gitignore ├── LICENSE ├── README.md ├── master ├── Makefile └── site │ ├── css │ ├── shelves.css │ └── styles.css │ ├── favicon.ico │ ├── fonts │ ├── 17c55b27-e9ab-43cd-b948-d49f97480d68.eot │ ├── 1e9892c0-6927-4412-9874-1b82801ba47a.woff │ ├── 46cf1067-688d-4aab-b0f7-bd942af6efd8.ttf │ ├── 52a192b1-bea5-4b48-879f-107f009b666f.svg │ ├── 6de0ce4d-9278-467b-b96f-c1f5f0a4c375.ttf │ ├── 9fd4ea0c-b19a-4b21-9fdf-37045707dd78.svg │ ├── e9167238-3b3f-4813-a04a-a384394eed42.eot │ └── fa19948e-5e38-4909-b31e-41acd170d6f2.woff │ ├── index.html │ └── svg │ └── logo.svg └── worker ├── Makefile ├── conf.yml ├── control.py ├── docker ├── Dockerfile ├── Makefile └── base │ ├── Dockerfile │ ├── profile_default │ ├── ipython_notebook_config.py │ └── static │ │ ├── base │ │ └── images │ │ │ └── favicon.ico │ │ └── custom │ │ ├── custom.css │ │ └── custom.js │ └── templates │ └── page.html ├── notebooks ├── bolt │ ├── intro.ipynb │ └── tutorials │ │ ├── axes.ipynb │ │ ├── basic-usage.ipynb │ │ ├── chunking.ipynb │ │ └── stacking.ipynb ├── datasets │ ├── intro.ipynb │ └── svoboda.lab │ │ └── tactile.navigation │ │ └── 1 │ │ └── explore.ipynb ├── neurofinder │ ├── intro.ipynb │ └── tutorials │ │ ├── custom-example-python.ipynb │ │ ├── custom-example-thunder.ipynb │ │ ├── loading-data.ipynb │ │ ├── running-algorithms.ipynb │ │ ├── training-example-block.ipynb │ │ └── training-example-feature.ipynb ├── thunder │ ├── intro.ipynb │ └── tutorials │ │ ├── basic_usage.ipynb │ │ ├── clustering.ipynb │ │ ├── factorization.ipynb │ │ ├── image_registration.ipynb │ │ ├── images.ipynb │ │ ├── input_formats.ipynb │ │ ├── multi_index.ipynb │ │ ├── regression.ipynb │ │ ├── series.ipynb │ │ └── thunder_context.ipynb └── welcome.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/README.md -------------------------------------------------------------------------------- /master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/Makefile -------------------------------------------------------------------------------- /master/site/css/shelves.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/css/shelves.css -------------------------------------------------------------------------------- /master/site/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/css/styles.css -------------------------------------------------------------------------------- /master/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/favicon.ico -------------------------------------------------------------------------------- /master/site/fonts/17c55b27-e9ab-43cd-b948-d49f97480d68.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/17c55b27-e9ab-43cd-b948-d49f97480d68.eot -------------------------------------------------------------------------------- /master/site/fonts/1e9892c0-6927-4412-9874-1b82801ba47a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/1e9892c0-6927-4412-9874-1b82801ba47a.woff -------------------------------------------------------------------------------- /master/site/fonts/46cf1067-688d-4aab-b0f7-bd942af6efd8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/46cf1067-688d-4aab-b0f7-bd942af6efd8.ttf -------------------------------------------------------------------------------- /master/site/fonts/52a192b1-bea5-4b48-879f-107f009b666f.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/52a192b1-bea5-4b48-879f-107f009b666f.svg -------------------------------------------------------------------------------- /master/site/fonts/6de0ce4d-9278-467b-b96f-c1f5f0a4c375.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/6de0ce4d-9278-467b-b96f-c1f5f0a4c375.ttf -------------------------------------------------------------------------------- /master/site/fonts/9fd4ea0c-b19a-4b21-9fdf-37045707dd78.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/9fd4ea0c-b19a-4b21-9fdf-37045707dd78.svg -------------------------------------------------------------------------------- /master/site/fonts/e9167238-3b3f-4813-a04a-a384394eed42.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/e9167238-3b3f-4813-a04a-a384394eed42.eot -------------------------------------------------------------------------------- /master/site/fonts/fa19948e-5e38-4909-b31e-41acd170d6f2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/fonts/fa19948e-5e38-4909-b31e-41acd170d6f2.woff -------------------------------------------------------------------------------- /master/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/index.html -------------------------------------------------------------------------------- /master/site/svg/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/master/site/svg/logo.svg -------------------------------------------------------------------------------- /worker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/Makefile -------------------------------------------------------------------------------- /worker/conf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/conf.yml -------------------------------------------------------------------------------- /worker/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/control.py -------------------------------------------------------------------------------- /worker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/Dockerfile -------------------------------------------------------------------------------- /worker/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/Makefile -------------------------------------------------------------------------------- /worker/docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/base/Dockerfile -------------------------------------------------------------------------------- /worker/docker/base/profile_default/ipython_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/base/profile_default/ipython_notebook_config.py -------------------------------------------------------------------------------- /worker/docker/base/profile_default/static/base/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/base/profile_default/static/base/images/favicon.ico -------------------------------------------------------------------------------- /worker/docker/base/profile_default/static/custom/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/base/profile_default/static/custom/custom.css -------------------------------------------------------------------------------- /worker/docker/base/profile_default/static/custom/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/base/profile_default/static/custom/custom.js -------------------------------------------------------------------------------- /worker/docker/base/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/docker/base/templates/page.html -------------------------------------------------------------------------------- /worker/notebooks/bolt/intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/bolt/intro.ipynb -------------------------------------------------------------------------------- /worker/notebooks/bolt/tutorials/axes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/bolt/tutorials/axes.ipynb -------------------------------------------------------------------------------- /worker/notebooks/bolt/tutorials/basic-usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/bolt/tutorials/basic-usage.ipynb -------------------------------------------------------------------------------- /worker/notebooks/bolt/tutorials/chunking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/bolt/tutorials/chunking.ipynb -------------------------------------------------------------------------------- /worker/notebooks/bolt/tutorials/stacking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/bolt/tutorials/stacking.ipynb -------------------------------------------------------------------------------- /worker/notebooks/datasets/intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/datasets/intro.ipynb -------------------------------------------------------------------------------- /worker/notebooks/datasets/svoboda.lab/tactile.navigation/1/explore.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/datasets/svoboda.lab/tactile.navigation/1/explore.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/intro.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/tutorials/custom-example-python.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/tutorials/custom-example-python.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/tutorials/custom-example-thunder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/tutorials/custom-example-thunder.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/tutorials/loading-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/tutorials/loading-data.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/tutorials/running-algorithms.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/tutorials/running-algorithms.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/tutorials/training-example-block.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/tutorials/training-example-block.ipynb -------------------------------------------------------------------------------- /worker/notebooks/neurofinder/tutorials/training-example-feature.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/neurofinder/tutorials/training-example-feature.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/intro.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/basic_usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/basic_usage.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/clustering.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/factorization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/factorization.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/image_registration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/image_registration.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/images.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/images.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/input_formats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/input_formats.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/multi_index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/multi_index.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/regression.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/series.ipynb -------------------------------------------------------------------------------- /worker/notebooks/thunder/tutorials/thunder_context.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/thunder/tutorials/thunder_context.ipynb -------------------------------------------------------------------------------- /worker/notebooks/welcome.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeneuro/notebooks/HEAD/worker/notebooks/welcome.ipynb -------------------------------------------------------------------------------- /worker/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | --------------------------------------------------------------------------------