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
Hi @zsdonghao@luoxier ,
Is there an error in your main.py:
_, errGB2A = sess.run([g_b2a_optim, g_b2a_loss], feed_dict={real_A: batch_imgB, real_B: batch_imgB})
Does it should be:
_, errGB2A = sess.run([g_b2a_optim, g_b2a_loss], feed_dict={real_A: batch_imgA, real_B: batch_imgB})
Could you please check it and let me know, thanks.
The text was updated successfully, but these errors were encountered:
Hi @zsdonghao @luoxier ,
Is there an error in your main.py:
_, errGB2A = sess.run([g_b2a_optim, g_b2a_loss], feed_dict={real_A: batch_imgB, real_B: batch_imgB})
Does it should be:
_, errGB2A = sess.run([g_b2a_optim, g_b2a_loss], feed_dict={real_A: batch_imgA, real_B: batch_imgB})
Could you please check it and let me know, thanks.
The text was updated successfully, but these errors were encountered: