當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python tf.summary.graph用法及代碼示例


編寫 TensorFlow 圖摘要。

用法

tf.summary.graph(
    graph_data
)

參數

返回

  • 成功時為 True,如果沒有寫入摘要,則為 False,因為沒有可用的默認摘要編寫器。

拋出

  • ValueError graph 摘要 API 以圖形模式調用。

僅在即刻模式下編寫tf.Graphtf.compat.v1.GraphDef 的實例作為摘要。在使用 tf.function 時,請優先使用跟蹤 API(tf.summary.trace_ontf.summary.trace_offtf.summary.trace_export),它可以自動收集和記錄執行中的圖表。

使用示例:

writer = tf.summary.create_file_writer("/tmp/mylogs")

@tf.function
def f():
  x = constant_op.constant(2)
  y = constant_op.constant(3)
  return x**y

with writer.as_default():
  tf.summary.graph(f.get_concrete_function().graph)

# Another example:in a very rare use case, when you are dealing with a TF v1
# graph.
graph = tf.Graph()
with graph.as_default():
  c = tf.constant(30.0)
with writer.as_default():
  tf.summary.graph(graph)

相關用法


注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.summary.graph。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。