Monday, October 6, 2025
HomeLanguagesPython – tensorflow.executing_eagerly()

Python – tensorflow.executing_eagerly()

TensorFlow is open-source Python library designed by Google to develop Machine Learning models and deep learning  neural networks. 

executing_eagerly() is used check if eager execution is enabled or disabled in current thread. By default eager execution is enabled so in most cases it will return true. This will return false in following cases:

  • If it is executing inside tensorflow.function and tf.init_scope or tf.config.experimental_run_functions_eagerly(True)  is not called previously.
  • Executing inside a transformation function for tensorflow.dataset.
  • tensorflow.compat.v1.disable_eager_execution() is called.

Syntax: tensorflow.executing_eagerly()

Parameters: This doesn’t accept any parameters.

Returns: It returns true if eager execution is enabled otherwise it will return false.

Example 1:

Python3




# Importing the library
import tensorflow as tf
 
# Checking eager execution
res = tf.executing_eagerly()
 
# Printing the result
print('res: ', res)


Output:

res:  True

Example 2: This example checks eager execution for tensorflow.function with and without init_scope.

Python3




# Importing the library
import tensorflow as tf
 
@tf.function
def gfg():
  with tf.init_scope():
    # Checking eager execution inside init_scope
    res = tf.executing_eagerly()
    print("res 1:", res)
 
  # Checking eager execution outside init_scope
  res = tf.executing_eagerly()
  print("res 2:", res)
gfg()


Output:

res 1: True
res 2: False
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32338 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6707 POSTS0 COMMENTS
Nicole Veronica
11871 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6825 POSTS0 COMMENTS
Ted Musemwa
7089 POSTS0 COMMENTS
Thapelo Manthata
6779 POSTS0 COMMENTS
Umr Jansen
6780 POSTS0 COMMENTS