tf.summary.trace_export  |  TensorFlow v2.16.1 (original) (raw)

tf.summary.trace_export

Stay organized with collections Save and categorize content based on your preferences.

Stops and exports the active trace as a Summary and/or profile file.

tf.summary.trace_export(
    name, step=None, profiler_outdir=None
)

Used in the notebooks

Used in the guide Used in the tutorials
Introduction to modules, layers, and models Examining the TensorFlow Graph

Stops the trace and exports all metadata collected during the trace to the default SummaryWriter, if one has been set.

Args
name A name for the summary to be written.
step Explicit int64-castable monotonic step value for this summary. If omitted, this defaults to tf.summary.experimental.get_step(), which must not be None.
profiler_outdir This arg is a no-op. Please set this in trace_on().
Raises
ValueError if a default writer exists, but no step was provided andtf.summary.experimental.get_step() is None.

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.