Skip to content

Instantly share code, notes, and snippets.

@sadanand1120
Last active July 11, 2020 14:00
Show Gist options
  • Save sadanand1120/a8ae25401839414ef868186741d296e9 to your computer and use it in GitHub Desktop.
Save sadanand1120/a8ae25401839414ef868186741d296e9 to your computer and use it in GitHub Desktop.
Testing the TensorFlow-1.14.0 build-from-source installation
import warnings
warnings.filterwarnings('ignore', category=FutureWarning)
import tensorflow as tf
text = tf.constant("Successfull Installation")
with tf.compat.v1.Session() as sess:
print(sess.run(text))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment