일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- pytorch
- Segmentation
- Python
- 머신러닝
- ViT
- 인공지능
- 파이토치
- optimizer
- 프로그래머스
- Computer Vision
- 파이썬
- opencv
- 옵티마이저
- object detection
- Convolution
- 논문
- 논문 리뷰
- 딥러닝
- 코딩테스트
- Self-supervised
- Paper Review
- 논문구현
- 논문리뷰
- 알고리즘
- cnn
- Semantic Segmentation
- Ai
- transformer
- programmers
- 코드구현
- Today
- Total
목록Atrous Convolution (2)
Attention please
이번에 리뷰할 논문은 DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CRFs 입니다. https://paperswithcode.com/paper/deeplab-semantic-image-segmentation-with-deep Papers with Code - DeepLab: Semantic Image Segmentation with Deep Convolutional Nets, Atrous Convolution, and Fully Connected CR #3 best model for Semantic Segmentation on Event-based Segmen..
다양한 convolution 기법들 original convolution Transposed convolution separable & depthwise & pointwise convolution depthwise separable convolution CNN 모델은 input data 와 kernel을 convolution하여 feature를 추출한다. 일반적인 Convolution 기법은 다음과 같다. 하지만 object detection이나 object segmentation과 같은 경우 객체 주변이나 주위의 환경에 대해 판단하기 위해 contextual information을 확보하는 것이 중요한데 이를 위해서는 더 넓은 receptive field를 고려해야한다. 하지만 기존의 Convoluti..