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
It checks version by comparing version strings, so from version 1.10, the check does not work any more.
defcheck_tensorflow_version():
min_tf_version="1.4.0-dev20171024"iftf.__version__<min_tf_version:
raiseEnvironmentError("Tensorflow version must >= %s"%min_tf_version)
It checks version by comparing version strings, so from version 1.10, the check does not work any more.