tf.compat.v1.enable_control_flow_v2 | TensorFlow v2.16.1 (original) (raw)
tf.compat.v1.enable_control_flow_v2
Stay organized with collections Save and categorize content based on your preferences.
Use control flow v2.
tf.compat.v1.enable_control_flow_v2()
control flow v2 (cfv2) is an improved version of control flow in TensorFlow with support for higher order derivatives. Enabling cfv2 will change the graph/function representation of control flow, e.g., tf.while_loop andtf.cond will generate functional While
and If
ops instead of low-levelSwitch
, Merge
etc. ops. Note: Importing and running graphs exported with old control flow will still be supported.
Calling tf.enable_control_flow_v2() lets you opt-in to this TensorFlow 2.0 feature.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.