设置 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。