A small personal playground for deep learning. More to follow.
This repository is highly inspired by the excellent https://github.com/tensorflow/tensor2tensor.
This requires the following dependencies:
Python 3
TensorFlow 2
NumPy
- For testing:
pytest
The latest supported version of Python is 3.8.
One simply way to set up this packagage is to leverage the requirements file.
First, create a Python 3.8 virtual environment:
virtualenv -p python38 env
source ./env/bin/activate
Then, install the requirements:
pip install -r requirements.txt
To run all unit tests, execute the following command from the top-level directory:
pytest --disable-warnings tommy2tommy/