tf.config.experimental_run_functions_eagerly

TensorFlow 2 version View source on GitHub

Enables / disables eager execution of tf.functions.

After calling tf.config.experimental_run_functions_eagerly(True) all invocations of tf.function will run eagerly instead of running through a graph function.

This can be useful for debugging or profiling.

Similarly, calling tf.config.experimental_run_functions_eagerly(False) will revert the behavior of all functions to graph functions.

run_eagerly Boolean. Whether to run functions eagerly.