gpt-2-simple
gpt-2-simple copied to clipboard
Doesn't work with Python3
I'm trying to run the example on my machine but I'm having some weird issues. I used a tool which automatically installs all the needed python packages but its still not working.
The python console:
ModuleNotFoundError: No module named 'tensorflow.contrib'
This is because you are trying to implement the vice written for TF1.X in a TF2.X environment. You need to use the exact version minimaxir specified. Contrib not available in TF2.
Use Python 3.6 and TF1.X.
Yes it has to be TF1.X. (I thought there was an assert to that effect? weird)