tf.config.experimental_run_functions_eagerly

Enables / disables eager execution of tf.functions. (deprecated)

Calling tf.config.experimental_run_functions_eagerly(True) will make all invocations of tf.function run eagerly instead of running as a traced graph function.

See tf.config.run_functions_eagerly for an example.

run_eagerly Boolean. Whether to run functions eagerly.