基于tf.shape(tensor)和tensor.shape()的区别说明


Posted in Python onJune 30, 2020

#tf.shape(tensor)和tensor.shape()的区别

a=tf.zeros([4,5,4,5,6])
print(type(a.shape))
print(a.shape.ndims)#多少个维度
print(a.shape.as_list())#返回列表
print(type(tf.shape(a)))
print(type(tf.shape(a)[0]))
b=a.shape.as_list()
c=tf.shape(a)
b[1]=tf.shape(a)[1]
print(b)
sess=tf.Session()
d=sess.run(c)
print(d)
outputs:
<class 'tensorflow.python.framework.tensor_shape.TensorShape'>
5
[4, 5, 4, 5, 6]
<class 'tensorflow.python.framework.ops.Tensor'>
<class 'tensorflow.python.framework.ops.Tensor'>
[4, <tf.Tensor 'strided_slice_1:0' shape=() dtype=int32>, 4, 5, 6]
[4 5 4 5 6]

其中tf.shape(tensor)使用的是动态的,即必须要在session中运行后才能显示出来,但是tensor.shape()是静态的,即通过定义的shape可以惊天的运行出来。

原因:在我们定义的时候,比如进行placeholder的时候我们可能会定义某些维度为None,在静态的时候是看不出来的,只能在运行的时候找到维度。

**使用:**可以在获得某些tensor的维度的时候进行检验,防止维度为None。

补充知识:tensorflow.python.framework.tensor_shape.TensorShape 类

TensorShape 是tensorflow中关于张量shape的类(class).

使用示例如下:

import tensorflow.compat.v1 as tf
from tensorflow.python.framework import tensor_shape
from tensorflow.python.framework import constant_op
 
tensor_test1=[10,10,10]
tensor_test2 = [None,10,10]
 
p1 = tensor_shape.as_shape(tensor_test1) # 得到的是一个类实例,该类实例包含一个属性,是 tensor_test1 的value
const = constant_op.constant(p1.as_list())
 
print("type(p1) = ",type(p1))
print("p1 = ",p1) # 使用p1时会自动调用p1中的value属性
print("p1.is_fully_defined() = ",p1.is_fully_defined())# is_fully_defined 是 TensorShape 类的一个内部函数
print("p1.ndims = ",p1.ndims) # ndims 也是TensorShape的一个属性值
print("p1.as_list() = ",p1.as_list()) # 把TensorShape的value属性转换成python中的list类型
print("const = ",const)

结果如下:

type(p1) = <class 'tensorflow.python.framework.tensor_shape.TensorShape'>
p1 = (10, 10, 10)
p1.is_fully_defined() = True
p1.ndims = 3
p1.as_list() = [10, 10, 10]
const = Tensor("Const:0", shape=(3,), dtype=int32)

以上这篇基于tf.shape(tensor)和tensor.shape()的区别说明就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python学习笔记之常用函数及说明
May 23 Python
python制作websocket服务器实例分享
Nov 20 Python
python装饰器深入学习
Apr 06 Python
Linux下python制作名片示例
Jul 20 Python
使用Python制作自动推送微信消息提醒的备忘录功能
Sep 06 Python
pycharm运行出现ImportError:No module named的解决方法
Oct 13 Python
python3 打开外部程序及关闭的示例
Nov 06 Python
python 使用poster模块进行http方式的文件传输到服务器的方法
Jan 15 Python
利用 Flask 动态展示 Pyecharts 图表数据方法小结
Sep 04 Python
pytorch:torch.mm()和torch.matmul()的使用
Dec 27 Python
详解Python中*args和**kwargs的使用
Apr 07 Python
Sentry的安装、配置、使用教程(Sentry日志手机系统)
Jul 23 Python
Tensorflow全局设置可见GPU编号操作
Jun 30 #Python
Python logging模块异步线程写日志实现过程解析
Jun 30 #Python
浅谈多卡服务器下隐藏部分 GPU 和 TensorFlow 的显存使用设置
Jun 30 #Python
Tensorflow中批量读取数据的案列分析及TFRecord文件的打包与读取
Jun 30 #Python
使用Tensorflow-GPU禁用GPU设置(CPU与GPU速度对比)
Jun 30 #Python
keras的backend 设置 tensorflow,theano操作
Jun 30 #Python
浅谈TensorFlow中读取图像数据的三种方式
Jun 30 #Python
You might like
让PHP支持页面回退的两种方法[转]
2007/02/14 PHP
微信营销平台系统?刮刮乐的开发
2014/06/10 PHP
CodeIgniter删除和设置Cookie的方法
2015/04/07 PHP
php获取微信基础接口凭证Access_token
2018/08/23 PHP
彻底搞懂JS无缝滚动代码
2007/01/03 Javascript
jQuery的三种$()
2009/12/30 Javascript
location.search在客户端获取Url参数的方法
2010/06/08 Javascript
JavaScript将数据转换成整数的方法
2014/01/04 Javascript
本人自用的global.js库源码分享
2015/02/28 Javascript
javascript变量声明实例分析
2015/04/25 Javascript
javascript中DOM复选框选择用法实例
2015/05/14 Javascript
jQuery实现元素拖拽并cookie保存顺序的方法
2016/02/20 Javascript
javascript实现简单计算器效果【推荐】
2016/04/19 Javascript
jquery实现的table排序功能示例
2017/03/10 Javascript
javascript设计模式 ? 备忘录模式原理与用法实例分析
2020/04/21 Javascript
[02:15]2014DOTA2国际邀请赛 赛后退役选手回顾
2014/08/01 DOTA
Python实现登录人人网并抓取新鲜事的方法
2015/05/11 Python
Python基于列表模拟堆栈和队列功能示例
2018/01/05 Python
浅谈Python接口对json串的处理方法
2018/12/19 Python
django rest framework 实现用户登录认证详解
2019/07/29 Python
浅谈python图片处理Image和skimage的区别
2019/08/04 Python
Python数据可视化:箱线图多种库画法
2019/11/06 Python
Python中的Cookie模块如何使用
2020/06/04 Python
Python requests接口测试实现代码
2020/09/08 Python
改变 Python 中线程执行顺序的方法
2020/09/24 Python
详解CSS3浏览器兼容
2016/12/14 HTML / CSS
找到您丢失的钥匙、钱包和手机:Tile
2017/05/19 全球购物
英国办公家具网站:Furniture At Work
2019/10/07 全球购物
预备党员思想汇报范文
2014/01/11 职场文书
电力培训心得体会
2014/09/02 职场文书
研究生个人学年总结
2015/02/14 职场文书
个人工作保证书
2015/02/28 职场文书
拾金不昧表扬信怎么写
2015/05/04 职场文书
社会主义核心价值观主题教育活动总结
2015/05/07 职场文书
使用numpy nonzero 找出非0元素
2021/05/14 Python
Windows Server 2012 修改远程默认端口3389的方法
2022/04/28 Servers