tf.shape( input, name=None, out_type=tf.int32)返回张量的形状。这个操作返回一个表示输入形状的一维整数张量。...例如:t = tf.constant([[[1, 1, 1], [2, 2, 2]], [[3, 3, 3], [4, 4, 4]]])tf.shape(t) # [2, 2, 3]参数:input:...原链接: https://tensorflow.google.cn/versions/r1.9/api_docs/python/tf/shape?hl=en