Control Flow
Note: Functions taking Tensor arguments can also take anything accepted by tf.convert_to_tensor.
[TOC]
Control Flow Operations
TensorFlow provides several operations and classes that you can use to control the execution of operations and add conditional dependencies to your graph.
tf.identitytf.tupletf.grouptf.no_optf.count_up_totf.condtf.casetf.while_loop
Logical Operators
TensorFlow provides several operations that you can use to add logical operators to your graph.
tf.logical_andtf.logical_nottf.logical_ortf.logical_xor
Comparison Operators
TensorFlow provides several operations that you can use to add comparison operators to your graph.
tf.equaltf.not_equaltf.lesstf.less_equaltf.greatertf.greater_equaltf.where
Debugging Operations
TensorFlow provides several operations that you can use to validate values and debug your graph.
tf.is_finitetf.is_inftf.is_nantf.verify_tensor_all_finitetf.check_numericstf.add_check_numerics_opstf.Asserttf.Print
