You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problems you are experiencing are due to changes that were made to the Tensorflow API.
Starting with TF 1.0 they renamed and changed the interface of some functions.
I was able to get it working on my machine with the following changes:
Change the order of arguments for all calls of tf.concat from "tf.concat(axis, [i1, i2])" to "tf.concat([i1, i2], axis)".
Add the following lines to "utils.py" after the import statements:
I wanted to play around with your work but im getting the above error when executing run.py
annysuggestions ? Its TF 1.1
tia
The text was updated successfully, but these errors were encountered: