标签:
最近压力好大,写点东西可能对心情有好处。
reshape即把矩阵的形状变一下,这跟matlab一样的,但如果参数是-1的话是什么意思呢?
看一下例子哈:
tensor = tf.constant([1, 2, 3, 4, 5, 6, 7,8])
sess.run(tf.initialize_all_variables())
print(sess.run(tensor))
tensorReshape = tf.reshape(tensor,[2,4])
tensorReshape = tf.reshape(tensor,[1,2,4])
print(sess.run(tensorReshape))
tensorReshape = tf.reshape(tensor,[-1,2,2])
print(sess.run(tensorReshape))
标签:
原文地址:http://www.cnblogs.com/wasss/p/5439363.html