Deep Learning: 使用Python進行自然語言處理的基礎理論實作
by
斉藤康毅
Preface
Source code
Chapter 1 Review of Neural Network
1.1 複習數學與Python
1.1.1 向量與矩陣
- Use np.array() to generate an np.ndarray array/matrix
import numpy as np
x = np.array([1,2,3])
x.shape
x.ndim
1.1.2 矩陣的算術運算是分別針對每一個元素
Broadcast
矩陣間的算術運算 維度小的矩陣會自動擴展跟令一個矩陣的維度後再做運算
1.1.4 向量的內積與矩陣的乘積
np.dot()
留言