当前位置:网站首页>【Cutout】《Improved Regularization of Convolutional Neural Networks with Cutout》
【Cutout】《Improved Regularization of Convolutional Neural Networks with Cutout》
2022-07-02 06:26:00 【bryant_meng】
arXiv-2017
文章目录
1 Background and Motivation
随着深度学习技术的发展,CNN 在很多计算机视觉任务中崭露头角,但 increased representational power also comes increased probability of overfitting, leading to poor generalization.
为提升模型的泛化性能,模拟 object occlusion, 作者提出了 Cutout 数据增强的方法——randomly masking out square regions of input during training,take more of the image context into consideration when making decisions.
This technique encourages the network to better utilize the full context of the image, rather than relying on the presence of a small set of specific visual features(which may not always be present).
2 Related Work
- Data Augmentation for Images
- Dropout in Convolutional Neural Networks
- Denoising Autoencoders & Context Encoders(self-supervised,挖去部分,网络补上,以强化特征)
3 Advantages / Contributions
监督学习中提出 Cutout 数据增强方法(dropout 的一种形式,自监督中也有类似方法)
4 Method
初始版:remove maximally activated features
最终版:随机中心点,正方形遮挡(可以在图片外,被图片边界截取后就不是正方形了)
使用时需要中心化一下(也即减去均值)
the dataset should be normalized about zero so that modified images will not have a large effect on the expected batch statistics.
5 Experiments
5.1 Datasets and Metrics
- CIFAR-10(32x32)
- CIFAR-100(32x32)
- SVHN(Street View House Numbers,32x32)
- STL-10(96x96)
评价指标为 top1 error
5.2 Experiments
1)CIFAR10 and CIFAR100
单个实验都重复跑了5次,±x
下图探索 cutout 中不同 patch length 的影响,
2)STL-10
3)Analysis of Cutout’s Effect on Activations
引入 cutout 后浅层激活均有提升,深层 in the tail end of the distribution.
The latter observation illustrates that cutout is indeed encouraging the network to take into account a wider variety of features when making predictions, rather than relying on the presence of a smaller number of features
再聚焦下单个样本的
6 Conclusion(own) / Future work
code:https://github.com/uoguelph-mlrg/Cutout
memory footprint 内存占用
相关工作介绍 drop out 时,文章中出现了这句话:All activations are kept when evaluating the network, but the resulting output is scaled according to the dropout probability
dropout 作用在 FC 上的效果比 Conv 上好,作者的解释是:1)convolutional layers already have much fewer parameters than fully-connected layers; 2)neighbouring pixels in images share much of the same information(丢一些无伤大雅)
cutout——连续区域的仅作用在输入层的 dropout 技术
边栏推荐
- 生成模型与判别模型的区别与理解
- Conversion of numerical amount into capital figures in PHP
- [introduction to information retrieval] Chapter 7 scoring calculation in search system
- ModuleNotFoundError: No module named ‘pytest‘
- label propagation 标签传播
- 【论文介绍】R-Drop: Regularized Dropout for Neural Networks
- MoCO ——Momentum Contrast for Unsupervised Visual Representation Learning
- [paper introduction] r-drop: regulated dropout for neural networks
- Generate random 6-bit invitation code in PHP
- 半监督之mixmatch
猜你喜欢
Error in running test pyspark in idea2020
程序的执行
SSM second hand trading website
使用 Compose 实现可见 ScrollBar
Using compose to realize visible scrollbar
使用Matlab实现:Jacobi、Gauss-Seidel迭代
[introduction to information retrieval] Chapter 1 Boolean retrieval
win10+vs2017+denseflow编译
Play online games with mame32k
Three principles of architecture design
随机推荐
生成模型与判别模型的区别与理解
Interpretation of ernie1.0 and ernie2.0 papers
基于onnxruntime的YOLOv5单张图片检测实现
Conversion of numerical amount into capital figures in PHP
How to efficiently develop a wechat applet
Regular expressions in MySQL
使用Matlab实现:Jacobi、Gauss-Seidel迭代
[introduction to information retrieval] Chapter 7 scoring calculation in search system
MMDetection安装问题
常见的机器学习相关评价指标
[in depth learning series (8)]: principles of transform and actual combat
Point cloud data understanding (step 3 of pointnet Implementation)
Convert timestamp into milliseconds and format time in PHP
图片数据爬取工具Image-Downloader的安装和使用
Win10 solves the problem that Internet Explorer cannot be installed
Installation and use of image data crawling tool Image Downloader
【Programming】
Use matlab to realize: chord cut method, dichotomy, CG method, find zero point and solve equation
win10解决IE浏览器安装不上的问题
Alpha Beta Pruning in Adversarial Search