您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在Tensorflow中對矩陣進行運算,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
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中對矩陣進行運算,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。