1D and 3D Generalizations
前言
如何將CNN應用在1D跟3D的數據上
內容
Convolutions in 2D and 1D
- 將1D數據應用在CNN。
- 將1D數據視為只有一行的input matrix。
- 將1D filter視為只有一行的filter matrix。
3D convolution
- 將3D數據應用在CNN。
- 多了time。
- 影像數據(w,h,t,c), t:時間 c:channel
- 3D filter(fw,fh,ft,fc)。
該學到的
- 如何將CNN應用在1D跟3D的數據上