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
def check_tensorflow_version():
if tf.version < "1.2.0":
raise EnvironmentError("Tensorflow version must >= 1.2.0,but version is {0}".
format(tf.version))
when the version about TensorFlow is "1.10.0", the function doesn't work well
The text was updated successfully, but these errors were encountered:
def check_tensorflow_version():
if tf.version < "1.2.0":
raise EnvironmentError("Tensorflow version must >= 1.2.0,but version is {0}".
format(tf.version))
when the version about TensorFlow is "1.10.0", the function doesn't work well
The text was updated successfully, but these errors were encountered: