首页 > 解决方案 > 为什么 verbose=True 无法在 jupyter notebook 中打印消息?如何解决?

问题描述

我在安装了 tensorflow 和 keras 的 conda 环境中安装了 jupyter notebook。之后,我无法使用verbose=True. 在 conda 环境之外它工作正常。

标签: tensorflowkerasjupyter-notebook

解决方案


你可能想试试

import tensorflow as tf
tf.logging.set_verbosity(tf.logging.INFO)

推荐阅读