Tensorflow日志格式

Posted dean0731

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tensorflow日志格式相关的知识,希望对你有一定的参考价值。

1,通过设置环境变量"TF_CPP_MIN_LOG_LEVEL"控制log级别

Level Level for Humans Level Description
0 DEBUG all messages are logged (Default)
1 INFO INFO messages are not printed
2 WARNING INFO and WARNING messages are not printed
3 ERROR INFO, WARNING, and ERROR messages are not printed

永久设置:加入环境变量TF_CPP_MIN_LOG_LEVEL=1

临时设置:os.environ[‘TF_CPP_MIN_LOG_LEVEL‘]=‘1‘

2.通过 tf.logging 模块进行设置 – 推荐

tf.logging.set_verbosity(tf.logging.ERROR)

tf.logging.ERROR可以换成 {DEBUG, INFO, WARN, ERROR, FATAL} 中的任何一个。

以上是关于Tensorflow日志格式的主要内容,如果未能解决你的问题,请参考以下文章

如何更改 winston 日志格式?

谷歌云日志的日志格式

自定义tornado日志格式

gunicorn 访问日志格式

Nginx 日志格式

rsyslog日志格式介绍