当前位置:网站首页>Reading papers [6] autoassembly: learning augmentation strategies from data
Reading papers [6] autoassembly: learning augmentation strategies from data
2022-07-22 17:16:00 【Doris404】
What this article puts forward
AutoAugment
The method can automatically select the data enhancement strategy according to the loss value on the verification set .
Problem description
Data enhancement generates more training data based on the existing training sample data , The purpose is to make the expanded training data as close to the real distributed data as possible , So as to improve the generalization ability of the model . Data enhancement is divided into 2 class : Supervised data enhancement and unsupervised data enhancement . Supervised data enhancement can be divided into single sample data enhancement and multi sample data enhancement ; Unsupervised data enhancement is divided into generating new data and data enhancement strategies . The method of this paper belongs to the 2 Data enhancement strategy in class data enhancement .
AutoAugment
A method of automatic data enhancement is proposed , The loss function on the validation set indicates the strategy of data enhancement .
Solve the mind
policy gradient
The loss function is introduced into the training method validation set
Loss value on
θ = θ + α ∇ θ ( S ) × R \theta=\theta+\alpha \nabla_\theta(S)\times R θ=θ+α∇θ(S)×R
Concrete realization
controller
Output one strategy(operation, magnitude, probability)
, Its model structure is a cyclic neural network , One output is the input of the next layer , after 30 individual softmax Layer can be obtained 5 individual sub-policy.
Why it works
Target training to improve the accuracy of downstream tasks , And GAN More interpretable than .
Reference resources
[1] policy gradient Method
[2]Proximal Policy Optimization (PPO) Detailed explanation
边栏推荐
- Apache自带的ab压力测试工具如何实现
- 重装Win11系统如何在线一键进行?
- How much do you know about hande digital platform system and trial?
- UE4 combines the objects made by the brush into a whole
- Tutorial update 20220719
- UE4 面试基础知识(三)
- Enthusiasm and expertise fly together | Microsoft's most valuable expert project, attracting Microsoft technology contributors!
- Abaqus实现二自由度振动系统模态计算
- JWT学习
- JWT learning
猜你喜欢
UE4 level blueprint realizes door opening and closing
Concis component library | dark pattern design
14_ Response model
NVIDIA hardware architecture
MVC模式和三层架构
UE4 writes the blueprint in the actor class to realize reuse
Qt5.9.2 initial import using msvc2017_ 64 record of problems encountered by compiler
Win11闪白屏无法控制如何解决?
Pytoch deep learning practice lesson 11 (CNN)
Getting started with VIM
随机推荐
Gd32f470 serial port idle interrupt +dma
Blob URL DataURL
PyGame electronic warfare simulation effect
5 minutes to talk about the enterprise PAAS platform hzero!
NFS网络文件系统
[open hand] hande enterprise PAAS platform hzero heavy open source!
ig,ax = plt.subplots()
numpy.ascontiguousarray
[paper translation] generalized radio representation learning via cross supervision between images
vivo官网APP全机型UI适配方案
numpy.around
Add asynchronous task processing model task to flask framework
UE4 enters the designated area to realize the trigger acceleration function
注意力机制的分类
[reprint] UE4 interview Basics (II)
Make good use of these seven tips in code review, and it is easy to establish your opposition alliance
In the arm64 environment, the third-party library hajimehoshi/oto of golang relies on the solution of alsa lib and CGO
16_ Response status code
July 19, 2022 daily
论文阅读【6】Autoaugment: Learning augmentation strategies from data