numpy和tensorflow中的各種乘法(點乘和矩陣乘)
點乘和矩陣乘的區別:
1)點乘(即“ * ”) —- 各個矩陣對應元素做乘法
若 w 為 m*1 的矩陣,x 為 m*n 的矩陣,那麼通過點乘結果就會得到一個 m*n 的矩陣。
若 w 為 m*n 的矩陣,x 為 m*n 的矩陣,那麼通過點乘結果就會得到一個 m*n 的矩陣。
w的列數隻能為 1 或 與x的列數相等(即n),w的行數與x的行數相等 才能進行乘法運算。
2)矩陣乘 —- 按照矩陣乘法規則做運算
若 w 為 m*p 的矩陣,x 為 p*n 的矩陣,那麼通過矩陣相乘結果就會得到一個 m*n 的矩陣。
隻有 w 的列數 == x的行數 時,才能進行乘法運算
1. numpy
1)點乘
import numpy as np w = np.array([[0.4], [1.2]]) x = np.array([range(1,6), range(5,10)]) print w print x print w*x
運行結果如下圖:
2)矩陣乘
import numpy as np w = np.array([[0.4, 1.2]]) x = np.array([range(1,6), range(5,10)]) print w print x print np.dot(w,x)
運行結果如下:
2. tensorflow
1)點乘
import tensorflow as tf w = tf.Variable([[0.4], [1.2]], dtype=tf.float32) # w.shape: [2, 1] x = tf.Variable([range(1,6), range(5,10)], dtype=tf.float32) # x.shape: [2, 5] y = w * x # 等同於 y = tf.multiply(w, x) y.shape: [2, 5] sess = tf.Session() init = tf.global_variables_initializer() sess.run(init) print sess.run(w) print sess.run(x) print sess.run(y)
運行結果如下:
2)矩陣乘
# coding:utf-8 import tensorflow as tf w = tf.Variable([[0.4, 1.2]], dtype=tf.float32) # w.shape: [1, 2] x = tf.Variable([range(1,6), range(5,10)], dtype=tf.float32) # x.shape: [2, 5] y = tf.matmul(w, x) # y.shape: [1, 5] sess = tf.Session() init = tf.global_variables_initializer() sess.run(init) print sess.run(w) print sess.run(x) print sess.run(y)
運行結果如下:
到此這篇關於numpy和tensorflow中的各種乘法(點乘和矩陣乘)的文章就介紹到這瞭,更多相關numpy和tensorflow 乘法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- TensorFlow神經網絡學習之張量與變量概念
- 基於Tensorflow搭建一個神經網絡的實現
- 使用tensorflow 實現反向傳播求導
- python如何獲取tensor()數據類型中的值
- 深度學習TextRNN的tensorflow1.14實現示例