在风格转化里定义的loss值,初始化采用了style_loss = tf.zeros(shape=1, tf.float32)
的方式,这里用1
表示了style_loss这一个元素。
在以前vgg net课程里,表示is_training这个布尔输入值,采用了is_training = tf.placeholder(tf.bool, shape=[])
这样用一个空list[]
表示了is_training这一个元素。
我发现把对placeholder的声明换成is_training = tf.placeholder(tf.bool, shape=1)
在引用时,会出现这样的错误:ValueError: Shape must be rank 0 but is rank 1 for 'conv1_1/batch_normalization/cond/Switch' (op: 'Switch') with input shapes: [1], [1].
是说这里输入的shape=1
被自动换为了shape=[1]
吗?这表示的是标量还是一个元素的数组?
请问,这两种对一个元素的shape的赋值方式可以互换吗?为什么?