Misc Python for GPT-2
Helpful stuff:
Install pyenv
$ curl https://pyenv.run | bash
Install Python 3.6.5
$ pyenv install 3.6.5
Create an environment and activate it
$ pyenv virtualenv 3.6.5 gpt-env
$ pyenv activate gpt-env
Install gpt-2-simple via PyPI
$ pip3 install gpt-2-simple
$ pip3 install tensorflow==1.15
Thanks to Robin Grosset https://github.com/rgrosset and Max Woolf https://github.com/minimaxir/