标签: google-colaboratory
我正在尝试在tf.Print中使用Colab。
tf.Print
Colab
下面是示例代码:
tf.enable_eager_execution() tensor = tf.range(10) tf.print("tensors:", tensor, {2: tensor * 2}, output_stream=sys.stdout)
但是我看不到输出,可能是因为输出转到笔记本内核的控制台输出,而不是笔记本单元输出中。
那我怎么看colab内核控制台输出?任何帮助将不胜感激!
colab
答案 0 :(得分:1)
从“运行时”菜单中选择“查看运行时日志”。
重复您的示例: