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


Python tf.autograph.trace用法及代碼示例


在編譯時跟蹤參數信息。

用法

tf.autograph.trace(
    *args
)

參數

  • *args 打印到 sys.stdout 的參數。

trace在調試時很有用,它總是在跟蹤階段執行,也就是在構建TF圖的時候。

示例用法

import tensorflow as tf

for i in tf.range(10):
  tf.autograph.trace(i)
# Output:<Tensor ...>

相關用法


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