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
Hello! Our static bug checker has found a performance issue in Appendix/pix2pix_v2_keras.py: Python type argument epoch is passed to tf.function decorated function train_step instead of tensors. As there is a for loop, every time the value changes, a new graph will be generated, and that can trigger tf.function retracing warning.
Hello! Our static bug checker has found a performance issue in Appendix/pix2pix_v2_keras.py: Python type argument
epoch
is passed to tf.function decorated functiontrain_step
instead of tensors. As there is a for loop, every time the value changes, a new graph will be generated, and that can trigger tf.function retracing warning.Here is the tensorflow document to support it.
Looking forward to your reply.
The text was updated successfully, but these errors were encountered: