从shell运行python时如何避免打印不必要的信息?

时间:2017-12-22 00:51:00

标签: python shell machine-learning

我正在从shell运行神经网络程序。它运行正常,但它打印除我输出之外的所有信息,我真的不需要。细节见附图。 enter image description here

我没有在我的代码中写任何内容来打印这些不必要的信息。

1 个答案:

答案 0 :(得分:1)

看起来您可能已启用log_device_placement。您可以通过完全从tf.Session()中的配置中将其删除或将其设置为False来关闭此功能。

# Example 1
sess = tf.Session(config=tf.ConfigProto(log_device_placement=False))

# Example 2
sess = tf.Session()

参考文献: