更改不可读的TensorFlow调试器(tfdbg)颜色

时间:2017-09-22 17:03:20

标签: tensorflow

我在Windows上运行TensorFlow(长话题)。当我使用these directions在Windows命令提示符下运行TensorFlow调试器(tfdbg)时,tfdbg屏幕上的颜色几乎无法在我的显示器上显示。

enter image description here

我尝试在命令提示符下更改颜色,但tfdbg上的curses包正在更改蓝色文本上的前景色和背景色,以便文本仍然不可读。

如何更改tfdbg颜色以便我可以阅读屏幕?

1 个答案:

答案 0 :(得分:1)

通过修复pyreadline的破坏安装并更改:

来解决问题
sess = debug.LocalCLIDebugWrapperSession(sess)

为:

sess = debug.LocalCLIDebugWrapperSession(sess, ui_type="readline")