Last active
July 11, 2020 14:00
-
-
Save sadanand1120/a8ae25401839414ef868186741d296e9 to your computer and use it in GitHub Desktop.
Testing the TensorFlow-1.14.0 build-from-source installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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