TensorFlow 1 version | View source on GitHub |
Enables / disables eager execution of tf.function
s. (deprecated)
tf.config.experimental_run_functions_eagerly(
run_eagerly
)
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.
Args | |
---|---|
run_eagerly
|
Boolean. Whether to run functions eagerly. |