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
I am trying to run pix2pix.py and I got an error at line 540,
OLD : #tf.set_random_seed(a.seed)
NEW : tf.random.set_seed(a.seed)
after that when I run the command again, I am getting this error
Traceback (most recent call last):
File "pix2pix.py", line 805, in
main()
File "pix2pix.py", line 627, in main
examples = load_examples()
File "pix2pix.py", line 259, in load_examples
path_queue = tf.train.string_input_producer(input_paths, shuffle=a.mode == "train")
AttributeError: module 'tensorflow._api.v2.train' has no attribute 'string_input_producer'
I didn't make any changes, just following the steps at this pix2pix. Please HELP.
The text was updated successfully, but these errors were encountered:
I am trying to run pix2pix.py and I got an error at line 540,
OLD : #tf.set_random_seed(a.seed)
NEW : tf.random.set_seed(a.seed)
after that when I run the command again, I am getting this error
Traceback (most recent call last):
File "pix2pix.py", line 805, in
main()
File "pix2pix.py", line 627, in main
examples = load_examples()
File "pix2pix.py", line 259, in load_examples
path_queue = tf.train.string_input_producer(input_paths, shuffle=a.mode == "train")
AttributeError: module 'tensorflow._api.v2.train' has no attribute 'string_input_producer'
I didn't make any changes, just following the steps at this pix2pix. Please HELP.
The text was updated successfully, but these errors were encountered: