Getting StartedΒΆ

Create an enviroment for the project using virtualenv. If you don’t have it installed just run:

>>> $ pip install virtualenv

To create and activate an enviroment (called mnisnt) run:

>>> $ virtualenv mnisnt
>>> $ source mnisnt/bin/activate

Install general requirements by running:

>>> $ make requirements

Install TensorFlow following the turorial on their website

If you want to run the project notebooks istall Jupyter and Matplotlib by running:

>>> $ pip install jupyter
>>> $ pip install matplotlib