├── .gitignore ├── README.md ├── data ├── HR.csv ├── diabetes.csv ├── iris.csv └── kc_house_data.csv └── notebooks ├── Part 1 - Artificial Neural Networks.ipynb ├── Part 2 - Case Studies.ipynb ├── Part 3 - Autoencoders.ipynb └── Part 4 (GPU) - Convolutional Neural Networks.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/README.md -------------------------------------------------------------------------------- /data/HR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/data/HR.csv -------------------------------------------------------------------------------- /data/diabetes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/data/diabetes.csv -------------------------------------------------------------------------------- /data/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/data/iris.csv -------------------------------------------------------------------------------- /data/kc_house_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/data/kc_house_data.csv -------------------------------------------------------------------------------- /notebooks/Part 1 - Artificial Neural Networks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/notebooks/Part 1 - Artificial Neural Networks.ipynb -------------------------------------------------------------------------------- /notebooks/Part 2 - Case Studies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/notebooks/Part 2 - Case Studies.ipynb -------------------------------------------------------------------------------- /notebooks/Part 3 - Autoencoders.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/notebooks/Part 3 - Autoencoders.ipynb -------------------------------------------------------------------------------- /notebooks/Part 4 (GPU) - Convolutional Neural Networks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ardendertat/Applied-Deep-Learning-with-Keras/HEAD/notebooks/Part 4 (GPU) - Convolutional Neural Networks.ipynb --------------------------------------------------------------------------------