对Tensorflow中的矩阵运算函数详解


Posted in Python onJuly 27, 2018

tf.diag(diagonal,name=None) #生成对角矩阵

import tensorflowas tf;
diagonal=[1,1,1,1]
with tf.Session() as sess:
  print(sess.run(tf.diag(diagonal)))
#输出的结果为[[1 0 0 0]
    [0 1 0 0]
    [0 0 1 0]
    [0 0 0 1]]

tf.diag_part(input,name=None) #功能与tf.diag函数相反,返回对角阵的对角元素

import tensorflow as tf;
diagonal =tf.constant([[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]])
with tf.Session() as sess:
 print(sess.run(tf.diag_part(diagonal)))
#输出结果为[1,1,1,1]

tf.trace(x,name=None) #求一个2维Tensor足迹,即为对角值diagonal之和

import tensorflow as tf;
diagonal =tf.constant([[1,0,0,3],[0,1,2,0],[0,1,1,0],[1,0,0,1]])
with tf.Session() as sess:
 print(sess.run(tf.trace(diagonal)))#输出结果为4

tf.transpose(a,perm=None,name='transpose') #调换tensor的维度顺序,按照列表perm的维度排列调换tensor的顺序

import tensorflow as tf;
diagonal =tf.constant([[1,0,0,3],[0,1,2,0],[0,1,1,0],[1,0,0,1]])
with tf.Session() as sess:
 print(sess.run(tf.transpose(diagonal))) #输出结果为[[1 0 0 1]
                             [0 1 1 0]
                             [0 2 1 0]
                             [3 0 0 1]]

tf.matmul(a,b,transpose_a=False,transpose_b=False,a_is_sparse=False,b_is_sparse=False,name=None) #矩阵相乘

transpose_a=False,transpose_b=False #运算前是否转置

a_is_sparse=False,b_is_sparse=False #a,b是否当作系数矩阵进行运算

import tensorflow as tf;
A =tf.constant([1,0,0,3],shape=[2,2])
B =tf.constant([2,1,0,2],shape=[2,2])
with tf.Session() as sess:
 print(sess.run(tf.matmul(A,B)))
#输出结果为[[2 1]
   [0 6]]

tf.matrix_determinant(input,name=None) #计算行列式

import tensorflow as tf;
A =tf.constant([1,0,0,3],shape=[2,2],dtype=tf.float32)
with tf.Session() as sess:
 print(sess.run(tf.matrix_determinant(A)))
#输出结果为3.0

tf.matrix_inverse(input,adjoint=None,name=None)

adjoint决定计算前是否进行转置

import tensorflow as tf;
A =tf.constant([1,0,0,2],shape=[2,2],dtype=tf.float64)
with tf.Session() as sess:
 print(sess.run(tf.matrix_inverse(A)))
#输出结果为[[ 1. 0. ]
   [ 0. 0.5]]

tf.cholesky(input,name=None) #对输入方阵cholesky分解,即为将一个对称正定矩阵表示成一个下三角矩阵L和其转置的乘积德分解

import tensorflow as tf;
A =tf.constant([1,0,0,2],shape=[2,2],dtype=tf.float64)
with tf.Session() as sess:
 print(sess.run(tf.cholesky(A)))
#输出结果为[[ 1.   0.  ]
   [ 0.   1.41421356]]

以上这篇对Tensorflow中的矩阵运算函数详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python encode和decode的妙用
Sep 02 Python
Python编写百度贴吧的简单爬虫
Apr 02 Python
详解Python中的type()方法的使用
May 21 Python
pandas中Timestamp类用法详解
Dec 11 Python
对python-3-print重定向输出的几种方法总结
May 11 Python
python实现黑客字幕雨效果
Jun 21 Python
python turtle 绘制太极图的实例
Dec 18 Python
TensorFlow MNIST手写数据集的实现方法
Feb 05 Python
python GUI库图形界面开发之PyQt5 MDI(多文档窗口)QMidArea详细使用方法与实例
Mar 05 Python
python代码区分大小写吗
Jun 17 Python
python3.7.3版本和django2.2.3版本是否可以兼容
Sep 01 Python
python+selenium自动化实战携带cookies模拟登陆微博
Jan 19 Python
python+influxdb+shell编写区域网络状况表
Jul 27 #Python
TensorFlow 合并/连接数组的方法
Jul 27 #Python
pytorch训练imagenet分类的方法
Jul 27 #Python
使用pytorch进行图像的顺序读取方法
Jul 27 #Python
PyTorch读取Cifar数据集并显示图片的实例讲解
Jul 27 #Python
pytorch 数据集图片显示方法
Jul 26 #Python
mac安装pytorch及系统的numpy更新方法
Jul 26 #Python
You might like
PHP基于rabbitmq操作类的生产者和消费者功能示例
2018/06/16 PHP
JavaScript定义类的几种方式总结
2014/01/06 Javascript
JS实现跟随鼠标闪烁转动色块的方法
2015/02/26 Javascript
js同源策略详解
2015/05/21 Javascript
JS非Alert实现网页右下角“未读信息”效果弹窗
2015/09/26 Javascript
浅析JavaScript Array和string的转换(推荐)
2016/05/20 Javascript
使用jquery/js获取iframe父子级、同级获取元素的方法
2016/08/05 Javascript
javascript比较语义化版本号的实现代码
2016/09/09 Javascript
vue综合组件间的通信详解
2017/11/06 Javascript
jQuery实现通过方向键控制div块上下左右移动的方法【测试可用】
2018/04/26 jQuery
vue-cli脚手架搭建的项目去除eslint验证的方法
2018/09/29 Javascript
浅析vue中的MVVM实现原理
2019/03/04 Javascript
layui内置模块layim发送图片添加加载动画的方法
2019/09/23 Javascript
jQuery操作元素追加内容示例
2020/01/10 jQuery
Python3读取zip文件信息的方法
2015/05/22 Python
python获取一组汉字拼音首字母的方法
2015/07/01 Python
python 中的divmod数字处理函数浅析
2017/10/17 Python
python定向爬虫校园论坛帖子信息
2018/07/23 Python
解决PyCharm控制台输出乱码的问题
2019/01/16 Python
python 使用matplotlib 实现从文件中读取x,y坐标的可视化方法
2019/07/04 Python
django-rest-swagger对API接口注释的方法
2019/08/29 Python
Python3并发写文件与Python对比
2019/11/20 Python
Python实现清理微信僵尸粉功能示例【基于itchat模块】
2020/05/29 Python
Quiksilver荷兰官方网站:冲浪和滑雪板
2019/11/16 全球购物
药学专业毕业生求职信
2013/10/20 职场文书
自主招生自荐书
2013/11/29 职场文书
家长对老师的感言
2014/03/11 职场文书
大学生就业意向书范文
2014/04/01 职场文书
羽毛球比赛策划方案
2014/06/13 职场文书
食品安全处置方案
2014/06/14 职场文书
皇城相府导游词
2015/02/06 职场文书
办公室日常管理制度
2015/08/04 职场文书
Golang 如何实现函数的任意类型传参
2021/04/29 Golang
Python实现打乒乓小游戏
2021/09/25 Python
golang连接MySQl使用sqlx库
2022/04/14 Golang
我国拿下天问一号火星着陆区附近 22 个地理实体命名:平乐、西柏坡、古田、漠河等
2022/04/29 数码科技