Python:0附加到字符串

时间:2018-07-10 10:55:24

标签: python string tensorflow tensorboard tensor

我正在尝试使用此代码在tensorflow中打印图层的名称。

 ## Creating the convolutional layer
    layer = tf.nn.conv2d(input=input,
                     filter=weights,
                     strides=[1, 1, 1, 1],
                     padding='SAME')

 print("layer name is", str(layer.name)) 

输出为'Conv2D:0'。

在张量板上,其名称显示为Conv2D。

为什么将:0附加到名称上?还是这个真实的名字?

0 个答案:

没有答案