Cant seem to run this..
gateway@gateway-media:~/work/large_neural_style$ python3 large_neural_style.py --style /home/gateway/work/styles/star.jpg --content /home/gateway/work/images/home.jpg --content-weight 90.6e11 --output /home/gateway/work/large_neural_style/
Traceback (most recent call last):
File "large_neural_style.py", line 6, in
any thoughts? I didnt really seed any example command lines in the docs.. thank you!
This seems to be an issue between running under Python 2 and Python 3.
Replace:
print "Failed:", result
With:
print ("Failed:", result)