Why tflearn disables executing eagerly ?
Author: consultantmuthuCreated Dec 23, 2022Updated Feb 1, 2023
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.
Source: tflearn/tflearn