19. MobileNet

2023. 9. 16. 00:04Google ML Bootcamp/4. Convolutional Neural Networks

depthwise separable convolution의 계산비용 절감을 계산중.

 

if normal convolution : 3*3*3 연산이 n(output)*n(output)*filter수만큼 반복.

if depthwise separable convolution : 3*3연산이 filter수만큼 반복 + n(output)*n(output)*filter수만큼 반복

- 모두 곱하기로 된 normal에 비해 더하기 연산으로 묶음으로써 depthwise separable convolution은 10배가량 계산비용이 절감되었다.

'Google ML Bootcamp > 4. Convolutional Neural Networks' 카테고리의 다른 글

21. EfficientNet  (0) 2023.09.16
20. MobileNet Architecture  (0) 2023.09.16
18. Inception Network  (0) 2023.09.15
17. Inception Network Motivation  (0) 2023.09.15
16. Networks in Networks and 1x1 Convolutions.  (0) 2023.09.15