标签: theano keras-2
我是一名新的keras学习者,我有一个问题,这是我的代码:
from keras.layers import Input img = Input(batch_shape=(10, 3, 32, 32), name='input_img') print(img.shape)
如果我使用tensorlow后端,则打印(10, 3, 32, 32)。 但是,如果我使用theano后端,则打印Shape.0。 为什么?
(10, 3, 32, 32)
Shape.0