anishathalye / neural-style

Neural style in TensorFlow! 🎨
https://anishathalye.com/an-ai-that-can-mimic-any-artist/
GNU General Public License v3.0
5.54k stars 1.52k forks source link

Fixing tensorflow version #154

Closed elgeish closed 4 years ago

elgeish commented 4 years ago

The current version specifier causes the latest version, 2.0, to get installed and that breaks the code in vgg.py

anishathalye commented 4 years ago

Thanks for pointing this out. In 144f81c90d015adb0ad120b9190dd5bbf305725a I changed requirements.txt to have the following:

tensorflow-gpu >= 1.0,<2.0

Rather than explicitly specifying a version, so people can get bugfixes etc.

elgeish commented 4 years ago

Awesome; even better! Thanks!