├── .gitignore ├── LICENSE ├── README.md ├── Tutorial 1 Questions - Solving optimization problems with Stochastic Gradient Descent.ipynb ├── Tutorial 1 Solutions - Solving optimization problems with Stochastic Gradient Descent.ipynb ├── Tutorial 2 Questions - Automating gradient computation with Tensorflow.ipynb ├── Tutorial 2 Solutions - Automating gradient computation with Tensorflow.ipynb ├── Tutorial 3 Questions - End-to-end training for computer vision.ipynb └── Tutorial 3 Solutions - End-to-end training for computer vision.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tensorflow-tutorial -------------------------------------------------------------------------------- /Tutorial 1 Questions - Solving optimization problems with Stochastic Gradient Descent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/Tutorial 1 Questions - Solving optimization problems with Stochastic Gradient Descent.ipynb -------------------------------------------------------------------------------- /Tutorial 1 Solutions - Solving optimization problems with Stochastic Gradient Descent.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/Tutorial 1 Solutions - Solving optimization problems with Stochastic Gradient Descent.ipynb -------------------------------------------------------------------------------- /Tutorial 2 Questions - Automating gradient computation with Tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/Tutorial 2 Questions - Automating gradient computation with Tensorflow.ipynb -------------------------------------------------------------------------------- /Tutorial 2 Solutions - Automating gradient computation with Tensorflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/Tutorial 2 Solutions - Automating gradient computation with Tensorflow.ipynb -------------------------------------------------------------------------------- /Tutorial 3 Questions - End-to-end training for computer vision.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/Tutorial 3 Questions - End-to-end training for computer vision.ipynb -------------------------------------------------------------------------------- /Tutorial 3 Solutions - End-to-end training for computer vision.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bellettif/tensorflow-tutorial/HEAD/Tutorial 3 Solutions - End-to-end training for computer vision.ipynb --------------------------------------------------------------------------------