#Create samples a = tf.random.normal([6,32,32,3]) #Reshape to different type tf.reshape(a,[6,32*32,3]).shape #Output:TensorShape([6, 1024, 3]) tf.reshape(a ...
確定! 回上一頁