├── .gitignore ├── LICENSE ├── README.md ├── images └── volcano.jpg └── notebooks ├── exploring-convolutions.ipynb ├── utils.py └── utils.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | **/.ipynb_checkpoints -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghakot/demystifying-convnets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghakot/demystifying-convnets/HEAD/README.md -------------------------------------------------------------------------------- /images/volcano.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghakot/demystifying-convnets/HEAD/images/volcano.jpg -------------------------------------------------------------------------------- /notebooks/exploring-convolutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghakot/demystifying-convnets/HEAD/notebooks/exploring-convolutions.ipynb -------------------------------------------------------------------------------- /notebooks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghakot/demystifying-convnets/HEAD/notebooks/utils.py -------------------------------------------------------------------------------- /notebooks/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raghakot/demystifying-convnets/HEAD/notebooks/utils.pyc --------------------------------------------------------------------------------