Provides an identity mapping of the non-Ref type input tensor for debugging.
tf.raw_ops.DebugIdentityV3(
input,
device_name='',
tensor_name='',
io_of_node='',
is_input=False,
io_index=-1,
debug_urls=[],
gated_grpc=False,
name=None
)
Provides an identity mapping of the non-Ref type input tensor for debugging.
Args |
|---|
input
Tensor. Input tensor, non-Reference type
device_name
string. Defaults to "".
Name of the device on which the tensor resides.
tensor_name
string. Defaults to "".
Name of the input tensor.
io_of_node
string. Defaults to "".
Name of the node of which the tensor is an input or output.
is_input
bool. Defaults to False.
If true, the tensor is an input of the node; otherwise the output.
io_index
int. Defaults to -1.
The index of which the tensor is an input or output of the node.
debug_urls
strings. Defaults to [].
List of URLs to debug targets, e.g.,
file:///foo/tfdbg_dump, grpc:://localhost:11011
gated_grpc
bool. Defaults to False.
Whether this op will be gated. If any of the debug_urls of this
debug node is of the grpc:// scheme, when the value of this attribute is set
to True, the data will not actually be sent via the grpc stream unless this
debug op has been enabled at the debug_url. If all of the debug_urls of this
debug node are of the grpc:// scheme and the debug op is enabled at none of
them, the output will be an empty Tensor.
name
Returns | |
|---|---|
A Tensor. Has the same type as input.
|