这篇文章主要介绍了Tensorflow怎么获取张量Tensor的具体维数,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
获取Tensor的维数
>>> import tensorflow as tf>>> tf.__version__'1.2.0-rc1'>>> x=tf.placeholder(dtype=float32,shape=[1,2,3,4])>>> x=tf.placeholder(dtype=tf.float32,shape=[1,2,3,4])>>> x.shape TensorShape([Dimension(1), Dimension(2), Dimension(3), Dimension(4)])>>> x.get_shape() TensorShape([Dimension(1), Dimension(2), Dimension(3), Dimension(4)])# 返回tuple>>> x.shape[2] Dimension(3)>>> x.get_shape()[2] Dimension(3)# 获取具体维度数值>>> x.shape[2].value3>>> x.get_shape()[2].value3# 也可以将TensorShape变量转化为list类型,然后直接按照索引取值>>> x.shape.as_list() [1, 2, 3, 4]>>> x.shape.as_list() [1, 2, 3, 4]# 可以与int型数值比较>>> x.shape[2] == 3True>>> x.get_shape()[2] == 3True
感谢你能够认真阅读完这篇文章,希望小编分享的“Tensorflow怎么获取张量Tensor的具体维数”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注辰讯云资讯频道,更多相关知识等着你来学习!
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: php中字符串如何去重