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
when I 'run main.py --testing' have some errors FailedPreconditionError (see above for traceback): Attempting to use uninitialized value D/d_up3_deconv/g [[node D/d_up3_deconv/g/read (defined at ../lib/operations.py:87) = Identity[T=DT_FLOAT, _device="/job:localhost/replica:0/task:0/device:GPU:0"](D/d_up3_deconv/g)]] [[{{node ArgMax/_3}} = _Recv[client_terminated=false, recv_device="/job:localhost/replica:0/task:0/device:CPU:0", send_device="/job:localhost/replica:0/task:0/device:GPU:0", send_device_incarnation=1, tensor_name="edge_491_ArgMax", tensor_type=DT_INT64, _device="/job:localhost/replica:0/task:0/device:CPU:0"]()]]
#4
Open
tongxuezhou opened this issue
Dec 14, 2018
· 6 comments
Hi,
Firstly, I would request you not to open a new issue everytime you face a problem.
You can continue posting on the same issue with new comments.
Also please put specific title and under it post your entire error message which helps to keep the issues section clean.
I will soon get back to you with your problem.
I am also getting same error in python main_unet.py --testing .
Resolved it with sess.run(tf.global_variables_initializer())
now getting out of memory error. trying to fix it using GPU allocation.
or any guidance how to solve it?
I am also getting same error in python main_unet.py --testing .
Resolved it with sess.run(tf.global_variables_initializer())
now getting out of memory error. trying to fix it using GPU allocation.
or any guidance how to solve it?
I solved this issue by `
with tf.device('/device:GPU:2'):
with tf.variable_scope('U') as scope:`
No description provided.
The text was updated successfully, but these errors were encountered: