일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- pandas #folium #groupby #네이버부스트코스 #코칭스터디
- Machine Learning
- GPU #cuda out of memory #gpu 메모리 #pytorch
- 트랜스포머 #transformer #attention #self-attention #어텐션 #인공지능 #AI #딥러닝 #NLP #자연어처리
- GPU #jtorch GPU #파이토치 병렬 #파이토치 GPU #pytorch gpu #multi process torch #horovod
- docker #도커 #도커 컨테이너 #docker container #도커 우분투
- 트랜스포머 #자연어처리 #딥러닝 #구글 #attention #self-attention #BERT #transformer #deeplearing
- 백준 #알고리즘 #골드
- ssh #우분투 ssh #우분터 서버 #도커 #우분투 도커 #docker #cuda #우분투 개발환경 #딥러닝 #ubuntu docker #ubuntu cuda
- logistic regression
- 알고리즘 #levenshtein distance #편집거리 #edit distance
- 백준
- docker #cuda #docker container #도커 #도커 컨테이너 #쿠다 #cuda 11.3
- 깃허브 #우분투 #ubuntu #Github #깃허브 우분투 #깃헙 우분투 #깃헙
- jupyter notebook #anaconda #vscode #pytorch #딥러닝 #deep learning #vscode server #서버 vscode #ssh vscode #vscode cuda
- 파이썬 #Python
- cuda #centos #cuda삭제 #리눅스 #cenos cuda삭제
- BERT #구글BERT #BERT의정석
- 구름
- docker #우분투 #ubuntu #도커 설치 #docker 설치 #docker installation #우분투 도커
- pytorch #cuda #우분투 torch #ubuntu pytorch #cuda torch #cuda pytorch
- 머신러닝
- 구름자연어처리과정
- docker #아나콘다 #anaconda #ubuntu anaconda #docker anaconda
- Today
- Total
바닥부터 시작하는 개발 공부
[Computer vision] Auto albumention(1) 본문
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를 참고하면
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
이건 나중에 시간되면 읽어보도록 하자
코드활용은 다음 포스팅으로
'딥러닝 > Computer vision' 카테고리의 다른 글
[딥러닝]GAN의 단점은 뭘까? (0) | 2023.02.22 |
---|---|
[딥러닝]GAN 평가하기(1): 어떻게 GAN을 평가해야 할까? (0) | 2023.02.22 |
[Computer Vision]Cutmix Augmentation (0) | 2023.01.27 |