综述 K.int_shape用于查看shape: from keras import backend as K input = K.placeholder(shape=(2, 4, 5)) K.int_shape(input) (2, 4, 5)