I have following code,
import tensorflow as tf
print(tf.version )
tf.executing_eagerly()
===> It prints 2.9.2 and True
!pip install tflearn
import tflearn as tfl
print(tf.version )
tf.executing_eagerly()
===> It prints 2.9.2 and False
Why? I was expecting it to be True after importing TFLearn.
I have following code,
import tensorflow as tf
print(tf.version )
tf.executing_eagerly()
===> It prints 2.9.2 and True
!pip install tflearn
import tflearn as tfl
print(tf.version )
tf.executing_eagerly()
===> It prints 2.9.2 and False
Why? I was expecting it to be True after importing TFLearn.