Notice
Recent Posts
Recent Comments
Link
250x250
«   2025/05   »
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
Archives
Today
Total
관리 메뉴

바닥부터 시작하는 개발 공부

[Computer vision] Auto albumention(1) 본문

딥러닝/Computer vision

[Computer vision] Auto albumention(1)

Im_light.J 2023. 1. 14. 16:54
728x90

Auto albumentaton

https://albumentations.ai/docs/autoalbument/

 

 

Albumentations Documentation - AutoAlbument Overview

Albumentations: fast and flexible image augmentations

albumentations.ai

https://github.com/albumentations-team/autoalbument

 

GitHub - albumentations-team/autoalbument: AutoML for image augmentation. AutoAlbument uses the Faster AutoAugment algorithm to

AutoML for image augmentation. AutoAlbument uses the Faster AutoAugment algorithm to find optimal augmentation policies. Documentation - https://albumentations.ai/docs/autoalbument/ - GitHub - albu...

github.com

 

 


 

 

Atuo albumentatiom은 automl의 일종이다. image의 변형을 통해 데이터 증강(augmentation)을 수행하여 주는 경우

robust한 모델을 만드는데 도움을 주어 성능이 항상될 수 있다.

 

 

https://github.com/albumentations-team/autoalbument-benchmarks

 

GitHub - albumentations-team/autoalbument-benchmarks: Benchmarks for AutoAlbument - AutoML for Image Augmentation

Benchmarks for AutoAlbument - AutoML for Image Augmentation - GitHub - albumentations-team/autoalbument-benchmarks: Benchmarks for AutoAlbument - AutoML for Image Augmentation

github.com

 

 

albumentation team에서 제공하는 benchmarks를 참고하면 

 

Model: Wide-Resnet-28-10 / Baseline augmentaion strategy: horizontal flip with p =0.5

CIFAR-10에서 Baseline -> AutoAlbument로 성능 항상이 크게 이루어진 것을 확인할 수 있다. 

 

사용법 (How to use) 


 

 

AutoAlbument로 우리의 데이터셋과 Configuration parameter를 집어 넣어줘야 한다. 

그럼 Autoalbumnet가 augmentation policies for albumentations를 토해내는 방식 

 

 

(albumentation에서 어떻게(무엇을~얼마나) 변형 시켜줄지에 대한...)

faster autoalbument algorithm을 이용한다고 한다. 

https://arxiv.org/abs/1911.06987

 

Faster AutoAugment: Learning Augmentation Strategies using Backpropagation

Data augmentation methods are indispensable heuristics to boost the performance of deep neural networks, especially in image recognition tasks. Recently, several studies have shown that augmentation strategies found by search algorithms outperform hand-mad

arxiv.org

이건 나중에 시간되면 읽어보도록 하자

 

코드활용은 다음 포스팅으로 

 

728x90
Comments