├── .gitignore ├── LICENSE ├── README.md ├── images ├── apply-dep.png ├── download-dep.png ├── mnist-env.png └── select-jupyter.png ├── notebooks └── curso_nivealdor.ipynb └── python-local └── mnist.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/README.md -------------------------------------------------------------------------------- /images/apply-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/images/apply-dep.png -------------------------------------------------------------------------------- /images/download-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/images/download-dep.png -------------------------------------------------------------------------------- /images/mnist-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/images/mnist-env.png -------------------------------------------------------------------------------- /images/select-jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/images/select-jupyter.png -------------------------------------------------------------------------------- /notebooks/curso_nivealdor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/notebooks/curso_nivealdor.ipynb -------------------------------------------------------------------------------- /python-local/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucferbux/Curso-Nivelador-IA/HEAD/python-local/mnist.py --------------------------------------------------------------------------------