tf.reshape
Posted aofengdaxia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tf.reshape相关的知识,希望对你有一定的参考价值。
tf.reshape(tensor, shape, name=None)
具体的理解:
就是把一个tensor重新分配到新的数组中去,进行排列。shape填写一个一纬数组.
tensor1 = tf.constant([0,1,2,3,4,5,6,7,8])
r1 = tf.reshape(tensor1,[3,3,1])
r2 = tf.reshape(tensor1,[3,1,3])
#reshape中的shape的几个纬度的成绩必须等于要处理的数组的长度。
#[3,3,1] 是指的第一个维的数量是3,第二维的数量是3,第三维的数量是1
#[3,3,1] 结果应该是:
[
[[0],[1],[2]],
[[3],[4],[5]],
[[6],[7],[8]]
]
以上是关于tf.reshape的主要内容,如果未能解决你的问题,请参考以下文章
tensorFlowtf.reshape()报错信息 - TypeError: Expected binary or unicode string
tf.keras遇见的坑:Output tensors to a Model must be the output of a TensorFlow `Layer`
typeError:The value of a feed cannot be a tf.Tensor object.Acceptable feed values include Python sca