A TensorFlow tutorial for the MIT computer vision class (6.819/6.869).
-
This tutorial walks you through basic operations in TensorFlow, and deep neural networks with simple and concrete examples.
-
Sample code for miniplaces challenge can be found in ./miniplaces/ folder.
Before you start, please use pip
to install the packages tensorflow
, jupyter
, and matplotlib
. We highly recommend using virtualenv to avoid dependency problems. Note that the current version of TensorFlow (1.3) is not compatible with older versions. Please install the newest version if you are currently running an older version.
pip install tensorflow==1.3
pip install jupyter
pip install matplotlib