RGB Image Convolution
Stack of Convolution
CONV (10 5X5X4 filters), RELU : 4개의 채널을 가진 5X5 필터, 10개의 필터가 있다. -> 10개의 출력 채널을 생성한다.
Convolutional Neural Networks
계산하기
- Stride
- Padding
*2를 하는 이유 : 과거에는 GPU의 성능이 낮아서 두개로 나눴기 때문
Dense layer
1X1 Convolution
- Dimension reduction : 채널을 줄일 수 있다.
- To reduce the number of parameters while increasing the depth : convolutin layer을 더 깊게 쌓으면서, 파라미터 수를 줄일 수 있다.