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
{{ message }}
This repository was archived by the owner on Dec 11, 2023. It is now read-only.
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)
The text was updated successfully, but these errors were encountered:
fromdistutils.versionimportStrictVersiondefcheck_tensorflow_version():
min_tf_version="1.4.0"ifStrictVersion(tf.__version__) <StrictVersion(min_tf_version):
raiseEnvironmentError("Tensorflow version must >= %s"%min_tf_version)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It checks version by comparing version strings, so from version 1.10, the check does not work any more.
The text was updated successfully, but these errors were encountered: