tfdbg.watch_graph(
run_options,
graph,
debug_ops='DebugIdentity',
debug_urls=None,
node_name_regex_whitelist=None,
op_type_regex_whitelist=None,
tensor_dtype_regex_whitelist=None,
tolerate_debug_op_creation_failures=False,
global_step=-1,
reset_disk_byte_usage=False
)
Defined in tensorflow/python/debug/lib/debug_utils.py.
Add debug watches to RunOptions for a TensorFlow graph.
To watch all Tensors on the graph, let both node_name_regex_whitelist
and op_type_regex_whitelist be the default (None).
N.B.:
1. Under certain circumstances, the Tensor may not get actually watched
(e.g., if the node of the Tensor is constant-folded during runtime).
2. For debugging purposes, the parallel_iteration attribute of all
tf.while_loops in the graph are set to 1 to prevent any node from
being executed multiple times concurrently. This change does not affect
subsequent non-debugged runs of the same tf.while_loops.
Args:
run_options: An instance ofconfig_pb2.RunOptionsto be modified.graph: An instance ofops.Graph.debug_ops: (strorlistofstr) name(s) of the debug op(s) to use.debug_urls: URLs to send debug values to. Can be a list of strings, a single string, or None. The case of a single string is equivalent to a list consisting of a single string, e.g.,file:///tmp/tfdbg_dump_1,grpc://localhost:12345. For debug op types with customizable attributes, each debug op name string can optionally contain a list of attribute names, in the syntax of: debug_op_name(attr_name_1=attr_value_1;attr_name_2=attr_value_2;...)node_name_regex_whitelist: Regular-expression whitelist for node_name, e.g.,"(weight_[0-9]+|bias_.*)"op_type_regex_whitelist: Regular-expression whitelist for the op type of nodes, e.g.,"(Variable|Add)". If bothnode_name_regex_whitelistandop_type_regex_whitelistare set, the two filtering operations will occur in a logicalANDrelation. In other words, a node will be included if and only if it hits both whitelists.tensor_dtype_regex_whitelist: Regular-expression whitelist for Tensor data type, e.g.,"^int.*". This whitelist operates in logicalANDrelations to the two whitelists above.tolerate_debug_op_creation_failures: (bool) whether debug op creation failures (e.g., due to dtype incompatibility) are to be tolerated by not throwing exceptions.global_step: (int) Optional global_step count for this debug tensor watch.reset_disk_byte_usage: (bool) whether to reset the tracked disk byte usage to zero (default:False).