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 observed some TensorFlow api usage in your code that might lead to serious compatibility problems(like a crash).
tf.global_variables_initializer appeared in tf v0.12.0-rc0 and this will induce a crash if used in an earlier version.
ALSO for versions after tf v0.12.0-rc0, it's better to use tf.initialize_all_variables instead of tf.global_variables_initializer as it is deprecated since then.
I have fixed this problem in #2
Look forward to your reply!
Thanks!
Dear developers,
I observed some TensorFlow api usage in your code that might lead to serious compatibility problems(like a crash).
tf.global_variables_initializerappeared in tf v0.12.0-rc0 and this will induce a crash if used in an earlier version.ALSO for versions after tf v0.12.0-rc0, it's better to use
tf.initialize_all_variablesinstead oftf.global_variables_initializeras it is deprecated since then.I have fixed this problem in #2
Look forward to your reply!
Thanks!