tensorflow.python.framework.errors_impl.InvalidArgumentError: ConcatOp : Ranks of all input tensors
今天在编写自己的tensorflow-AutoEnocder网络是出现错误:百度一下有大佬说是维度合并不当。我仔细查看了一下代码发现自己在tf.concat时sample的维度不对:x_hat=tf.sigmoid(logits)x_hat=tf.reshape(x_hat,[-1,28,28])x_concat=tf.concat([sample,x_hat],axis=0)x_concat=x