├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Part 1-Getting started with TensorFlow and Deep Learning ├── Excercise_1_Solution.ipynb ├── Hello_Neural_Nets.ipynb └── README.md ├── Part 2-Computer Vision with TensorFlow ├── Callbacks_example_Notebook.ipynb ├── Computer_vision_examples_Notebook.ipynb ├── Excercise2_question.ipynb ├── Excercise2_solution.ipynb └── README.md ├── Part 3-Using Convolutional Neural Networks with TensorFlow └── README.md ├── Part 4-Extending what Convolutional Neural Nets can do ├── CNN_with_Fashion_MNIST_Notebook.ipynb ├── Convolutions_from_scratch.ipynb ├── Excercise2_question.ipynb ├── Excercise2_solution.ipynb └── README.md ├── Part 5-Working with Complex Image data for CNNs ├── Complex image data.ipynb └── README.md └── README.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /Part 1-Getting started with TensorFlow and Deep Learning/Excercise_1_Solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 1-Getting started with TensorFlow and Deep Learning/Excercise_1_Solution.ipynb -------------------------------------------------------------------------------- /Part 1-Getting started with TensorFlow and Deep Learning/Hello_Neural_Nets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 1-Getting started with TensorFlow and Deep Learning/Hello_Neural_Nets.ipynb -------------------------------------------------------------------------------- /Part 1-Getting started with TensorFlow and Deep Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 1-Getting started with TensorFlow and Deep Learning/README.md -------------------------------------------------------------------------------- /Part 2-Computer Vision with TensorFlow/Callbacks_example_Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 2-Computer Vision with TensorFlow/Callbacks_example_Notebook.ipynb -------------------------------------------------------------------------------- /Part 2-Computer Vision with TensorFlow/Computer_vision_examples_Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 2-Computer Vision with TensorFlow/Computer_vision_examples_Notebook.ipynb -------------------------------------------------------------------------------- /Part 2-Computer Vision with TensorFlow/Excercise2_question.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 2-Computer Vision with TensorFlow/Excercise2_question.ipynb -------------------------------------------------------------------------------- /Part 2-Computer Vision with TensorFlow/Excercise2_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 2-Computer Vision with TensorFlow/Excercise2_solution.ipynb -------------------------------------------------------------------------------- /Part 2-Computer Vision with TensorFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 2-Computer Vision with TensorFlow/README.md -------------------------------------------------------------------------------- /Part 3-Using Convolutional Neural Networks with TensorFlow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 3-Using Convolutional Neural Networks with TensorFlow/README.md -------------------------------------------------------------------------------- /Part 4-Extending what Convolutional Neural Nets can do/CNN_with_Fashion_MNIST_Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 4-Extending what Convolutional Neural Nets can do/CNN_with_Fashion_MNIST_Notebook.ipynb -------------------------------------------------------------------------------- /Part 4-Extending what Convolutional Neural Nets can do/Convolutions_from_scratch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 4-Extending what Convolutional Neural Nets can do/Convolutions_from_scratch.ipynb -------------------------------------------------------------------------------- /Part 4-Extending what Convolutional Neural Nets can do/Excercise2_question.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 4-Extending what Convolutional Neural Nets can do/Excercise2_question.ipynb -------------------------------------------------------------------------------- /Part 4-Extending what Convolutional Neural Nets can do/Excercise2_solution.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 4-Extending what Convolutional Neural Nets can do/Excercise2_solution.ipynb -------------------------------------------------------------------------------- /Part 4-Extending what Convolutional Neural Nets can do/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 4-Extending what Convolutional Neural Nets can do/README.md -------------------------------------------------------------------------------- /Part 5-Working with Complex Image data for CNNs/Complex image data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 5-Working with Complex Image data for CNNs/Complex image data.ipynb -------------------------------------------------------------------------------- /Part 5-Working with Complex Image data for CNNs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/Part 5-Working with Complex Image data for CNNs/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rishit-dagli/Deep-Learning-With-TensorFlow/HEAD/README.md --------------------------------------------------------------------------------