tf.compat.v1.summary.tensor_summary

Outputs a Summary protocol buffer with a serialized tensor.proto.

nameA name for the generated node. If display_name is not set, it will also serve as the tag name in TensorBoard. (In that case, the tag name will inherit tf name scopes.)
tensorA tensor of any type and shape to serialize.
summary_descriptionA long description of the summary sequence. Markdown is supported.
collectionsOptional list of graph collections keys. The new summary op is added to these collections. Defaults to [GraphKeys.SUMMARIES].
summary_metadataOptional SummaryMetadata proto (which describes which plugins may use the summary value).
familyOptional; if provided, used as the prefix of the summary tag, which controls the name used for display on TensorBoard when display_name is not set.
display_nameA string used to name this data in TensorBoard. If this is not set, then the node name will be used instead.

A scalar Tensor of type string. The serialized Summary protocol buffer.