Find version of TensorFlow
iq.opengenus.org › find-version-of-tensorflowprint(tf.version.VERSION) The output will be like: 2.0.1 If you want to get the compiler version, then we need to use COMPILER_VERSION attribute as follows: print(tf.version.COMPILER_VERSION) The output will be like: '7.3.1 20180303' Similarly, if you want to get the git version, then we need to use GIT_VERSION attribute as follows:
Print TensorFlow Version · TensorFlow Tutorial
print (tf.__version__) When we evaluate that, we see that the TensorFlow package that is currently installed and being used in our Python interpreter session is TensorFlow 1.10.0. Perfect - We were able to find out which version of …