設置 AutoGraph 詳細級別。
用法
tf.autograph.set_verbosity(
level, alsologtostdout=False
)
參數
-
level
int,詳細程度;較大的值指定增加的詳細程度; 0 表示不記錄。報告錯誤時,建議將此值設置為更大的數字,例如 10。 -
alsologtostdout
bool,是否也將日誌消息輸出到sys.stdout
。
在 AutoGraph 中調試日誌記錄
在提交錯誤報告或進行更多in-depth 調試時,啟用更詳細的日誌記錄很有用。
有兩種方法可以控製日誌記錄的詳細程度:
set_verbosity
函數AUTOGRAPH_VERBOSITY
環境變量
set_verbosity
優先於環境變量。
例如:
import os
import tensorflow as tf
os.environ['AUTOGRAPH_VERBOSITY'] = '5'
# Verbosity is now 5
tf.autograph.set_verbosity(0)
# Verbosity is now 0
os.environ['AUTOGRAPH_VERBOSITY'] = '1'
# No effect, because set_verbosity was already called.
日誌條目以 INFO
級別輸出到 absl 的默認輸出。可以使用alsologtostdout
參數將日誌鏡像到標準輸出。 Python 在交互模式下運行時默認啟用鏡像。
相關用法
- Python tf.autograph.to_code用法及代碼示例
- Python tf.autograph.to_graph用法及代碼示例
- Python tf.autograph.trace用法及代碼示例
- Python tf.autograph.experimental.set_loop_options用法及代碼示例
- Python tf.autodiff.ForwardAccumulator用法及代碼示例
- Python tf.argsort用法及代碼示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代碼示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代碼示例
- Python tf.compat.v1.data.TFRecordDataset.interleave用法及代碼示例
- Python tf.summary.scalar用法及代碼示例
- Python tf.linalg.LinearOperatorFullMatrix.matvec用法及代碼示例
- Python tf.linalg.LinearOperatorToeplitz.solve用法及代碼示例
- Python tf.raw_ops.TPUReplicatedInput用法及代碼示例
- Python tf.raw_ops.Bitcast用法及代碼示例
- Python tf.compat.v1.distributions.Bernoulli.cross_entropy用法及代碼示例
- Python tf.compat.v1.Variable.eval用法及代碼示例
- Python tf.compat.v1.train.FtrlOptimizer.compute_gradients用法及代碼示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代碼示例
- Python tf.math.special.fresnel_cos用法及代碼示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.autograph.set_verbosity。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。