Tensorflow -tf.shape(a)和a.get_shape()

1、tf.shape(a)和a.get_shape()比较

   相同点:都可以得到tensor a的尺寸

   不同点:tf.shape()中a 数据的类型可以是tensor, list, array

               a.get_shape()中a的数据类型只能是tensor,且返回的是一个元组(tuple)

2、例子

import tensorflow as tf  
import numpy as np  
 
x=tf.constant([[1,2,3],[4,5,6]]  
y=[[1,2,3],[4,5,6]]  
z=np.arange(24).reshape([2,3,4]))  
 
sess=tf.Session()  
# tf.shape()  
x_shape=tf.shape(x)                    #  x_shape 是一个tensor  
y_shape=tf.shape(y)                    #  <tf.Tensor 'Shape_2:0' shape=(2,) dtype=int32>  
z_shape=tf.shape(z)                    #  <tf.Tensor 'Shape_5:0' shape=(3,) dtype=int32>  
print sess.run(x_shape)              # 结果:[2 3]  
print sess.run(y_shape)              # 结果:[2 3]  
print sess.run(z_shape)              # 结果:[2 3 4]  
 
 
#a.get_shape()  
x_shape=x.get_shape()  # 返回的是TensorShape([Dimension(2), Dimension(3)]),不能使用 sess.run() 因为返回的不是tensor 或string,而是元组  
x_shape=x.get_shape().as_list()  # 可以使用 as_list()得到具体的尺寸,x_shape=[2 3]  
y_shape=y.get_shape()  # AttributeError: 'list' object has no attribute 'get_shape'  
z_shape=z.get_shape()  # AttributeError: 'numpy.ndarray' object has no attribute 'get_shape'


实例2:

import tensorflow as tf
import numpy as np

a = tf.Variable([[1,2,3]])

b = tf.reduce_sum(a,reduction_indices=[0])#值为[1,2,3]
s = tf.shape(b)[0]
init = tf.global_variables_initializer()

with tf.Session() as sess:
    sess.run(init)

    print(sess.run(a))#输出[[1 2 3]]
    print(type(sess.run(a))) #输出<class numpy.ndarray>
    print(sess.run(b))#输出[1 2 3]
    print(sess.run(s))#输出[3]
    print(s) #输出Tnesor("strided_slice:0")
    print(b.get_shape())#输出(3,)

m = np.array([1,2,3])
print(m)  #输出[1 2 3]
print(m.shape) #输出(3,)

  • 3
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值