Tensorflow:转置函数 transpose的使用详解


Posted in Python onFebruary 11, 2020

我就废话不多说,咱直接看代码吧!

tf.transpose

transpose(
  a,
  perm=None,
  name='transpose'
)

Defined in tensorflow/python/ops/array_ops.py.

See the guides: Math > Matrix Math Functions, Tensor Transformations > Slicing and Joining

Transposes a. Permutes the dimensions according to perm.

The returned tensor's dimension i will correspond to the input dimension perm[i]. If perm is not given, it is set to (n-1…0), where n is the rank of the input tensor. Hence by default, this operation performs a regular matrix transpose on 2-D input Tensors.

For example:

x = tf.constant([[1, 2, 3], [4, 5, 6]])
tf.transpose(x) # [[1, 4]
         # [2, 5]
         # [3, 6]]
tf.transpose(x, perm=[1, 0]) # [[1, 4]
               # [2, 5]
               # [3, 6]]
# 'perm' is more useful for n-dimensional tensors, for n > 2
x = tf.constant([[[ 1, 2, 3],
         [ 4, 5, 6]],
         [[ 7, 8, 9],
         [10, 11, 12]]])

# Take the transpose of the matrices in dimension-0
tf.transpose(x, perm=[0, 2, 1]) # [[[1, 4],
                 #  [2, 5],
                 #  [3, 6]],
                 # [[7, 10],
                 #  [8, 11],
                 #  [9, 12]]]

a的转置是根据 perm 的设定值来进行的。

返回数组的 dimension(尺寸、维度) i与输入的 perm[i]的维度相一致。如果未给定perm,默认设置为 (n-1…0),这里的 n 值是输入变量的 rank 。因此默认情况下,这个操作执行了一个正规(regular)的2维矩形的转置

例如:

x = [[1 2 3]
   [4 5 6]]

tf.transpose(x) ==> [[1 4]
           [2 5]
           [3 6]]

tf.transpose(x) 等价于:
tf.transpose(x perm=[1, 0]) ==> [[1 4]
                 [2 5]
                 [3 6]]
a=tf.constant([[[1,2,3],[4,5,6]],[[7,8,9],[10,11,12]]])
array([[[ 1, 2, 3],
    [ 4, 5, 6]],

    [[ 7, 8, 9],
    [10, 11, 12]]])

x=tf.transpose(a,[1,0,2])
array([[[ 1, 2, 3],
    [ 7, 8, 9]],

    [[ 4, 5, 6],
    [10, 11, 12]]])

x=tf.transpose(a,[0,2,1])
array([[[ 1, 4],
    [ 2, 5],
    [ 3, 6]],

    [[ 7, 10],
    [ 8, 11],
    [ 9, 12]]]) 

x=tf.transpose(a,[2,1,0])
array([[[ 1, 7],
    [ 4, 10]],

    [[ 2, 8],
    [ 5, 11]],

    [[ 3, 9],
    [ 6, 12]]])


array([[[ 1, 7],
    [ 4, 10]],

    [[ 2, 8],
    [ 5, 11]],

    [[ 3, 9],
    [ 6, 12]]])

x=tf.transpose(a,[1,2,0])
array([[[ 1, 7],
    [ 2, 8],
    [ 3, 9]],

    [[ 4, 10],
    [ 5, 11],
    [ 6, 12]]])

以上这篇Tensorflow:转置函数 transpose的使用详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python字符串连接的N种方式总结
Sep 17 Python
Django实现图片文字同时提交的方法
May 26 Python
Python实现上下班抢个顺风单脚本
Feb 07 Python
Python实现调用另一个路径下py文件中的函数方法总结
Jun 07 Python
替换python字典中的key值方法
Jul 06 Python
Django添加KindEditor富文本编辑器的使用
Oct 24 Python
python字典的setdefault的巧妙用法
Aug 07 Python
python小项目之五子棋游戏
Dec 26 Python
python3.8与pyinstaller冲突问题的快速解决方法
Jan 16 Python
在echarts中图例legend和坐标系grid实现左右布局实例
May 16 Python
python连接手机自动搜集蚂蚁森林能量的实现代码
Feb 24 Python
Python的property属性详细讲解
Apr 11 Python
tensorflow多维张量计算实例
Feb 11 #Python
python误差棒图errorbar()函数实例解析
Feb 11 #Python
解决Python3.8用pip安装turtle-0.0.2出现错误问题
Feb 11 #Python
python scatter函数用法实例详解
Feb 11 #Python
python可视化text()函数使用详解
Feb 11 #Python
python读取图片的几种方式及图像宽和高的存储顺序
Feb 11 #Python
详解Python中的分支和循环结构
Feb 11 #Python
You might like
变量在 PHP7 内部的实现(二)
2015/12/21 PHP
详解PHP的Yii框架中自带的前端资源包的使用
2016/03/31 PHP
php 截取GBK文档某个位置开始的n个字符方法
2017/03/08 PHP
详解thinkphp5+swoole实现异步邮件群发(SMTP方式)
2017/10/13 PHP
PHP PDOStatement::bindValue讲解
2019/01/30 PHP
Prototype使用指南之enumerable.js
2007/01/10 Javascript
jquery select(列表)的操作(取值/赋值)
2009/08/06 Javascript
javascript针对DOM的应用实例(一)
2012/04/15 Javascript
JavaScript 处理Iframe自适应高度(同或不同域名下)
2013/03/29 Javascript
jquery插件lazyload.js延迟加载图片的使用方法
2014/02/19 Javascript
AngularJS 整理一些优化的小技巧
2016/08/18 Javascript
JSON中key动态设置及JSON.parse和JSON.stringify()的区别
2016/12/29 Javascript
Bootstrap导航菜单点击后无法自动添加active的处理方法
2018/08/10 Javascript
使用imba.io框架得到比 vue 快50倍的性能基准
2019/06/17 Javascript
javascript设计模式 ? 职责链模式原理与用法实例分析
2020/04/16 Javascript
跟老齐学Python之数据类型总结
2014/09/24 Python
Python中list初始化方法示例
2016/09/18 Python
Python实现的简单dns查询功能示例
2017/05/24 Python
Python走楼梯问题解决方法示例
2018/07/25 Python
PyCharm配置mongo插件的方法
2018/11/30 Python
Python3多线程基础知识点
2019/02/19 Python
在Python中,不用while和for循环遍历列表的实例
2019/02/20 Python
Python中 Global和Nonlocal的用法详解
2020/01/20 Python
Python提取视频中图片的示例(按帧、按秒)
2020/10/22 Python
GoDaddy英国:全球排名第一的域名注册商
2018/06/08 全球购物
美国杰西潘尼官网:JCPenney
2019/06/12 全球购物
碧欧泉法国官网:Biotherm法国
2019/10/23 全球购物
递归实现回文判断(如:abcdedbca就是回文,判断一个面试者对递归理解的简单程序)
2013/04/28 面试题
捐赠仪式主持词
2014/03/19 职场文书
党员承诺书内容
2014/03/26 职场文书
2014入党积极分子批评与自我批评思想报告
2014/10/06 职场文书
关于运动会广播稿200字
2014/10/08 职场文书
稽核岗位职责范本
2015/04/13 职场文书
Go语言操作数据库及其常规操作的示例代码
2021/04/21 Golang
golang goroutine顺序输出方式
2021/04/29 Golang
mysql查看表结构的三种方法总结
2022/07/07 MySQL