当前位置:网站首页>Network Models (DeepLab, DeepLabv3)
Network Models (DeepLab, DeepLabv3)
2022-08-11 09:23:00 【Ferry fifty-six】
Reference
Differences from previous models
1. The application scenario of the U-net series is a small target, so local features are sufficient.But when it is used to segment large targets, it is not very friendly.
2. In order to increase the receptive field, the traditional segmentation algorithm will choose pooling, but this will lose some information.
3. Based on the above problems, DeepLab proposes a delated convolution to increase the receptive field.
Advantages of atrous convolution
1. Increase the receptive field
2. Complete hole convolution by setting the dilation rate parameter, without adding additional calculations
3. The receptive field can be expanded by any multiple of the parameters without introducing additional parameters
4. The application is simple, just set a parameter in the convolution layer.
(learnable atrous convolution?)
SPP (Image Pyramid: Obtaining multi-scale (multi-receptive field) features of an image)
ASPP uses atrous convolution based on SPP
DeepLabv3 Model

边栏推荐
猜你喜欢
随机推荐
wordpress插件开发03-简单的all in one seo 插件开发
QTableWidget 使用方法
MySQL select count(*) count is very slow, is there any optimization solution?
新一代开源免费的轻量级 SSH 终端,非常炫酷好用!
Three handshakes and four waves
What should I do if the mysql data query causes the cup to be full because the query time span is too large
Typora和基本的Markdown语法
Primavera Unifier 高级公式使用分享
How to use QTableWidget
golang string manipulation
pycharm 取消msyql表达式高亮
MySql事务
零基础创作专业wordpress网站12-设置标签栏图标(favicon)
网络模型(DeepLab, DeepLabv3)
1.3版本自定义TrainOneStepCell报错
基础SQL——DDL
idea 方法注释:自定义修改method的return和params,void不显示
【剑指offer】左旋字符串,替换空格,还有类题!!!
flex布局回顾
Lightweight network (1): MobileNet V1, V2, V3 series








