Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 딥러닝
- 알고리즘
- Depth estimation
- 머신러닝
- 자료구조
- web
- SSL
- FGVC
- classification
- ML
- clean code
- nlp
- pytorch
- algorithm
- REACT
- 3d
- Python
- cs
- computervision
- Vision
- Torch
- Front
- math
- Meta Learning
- CV
- FineGrained
- dl
- GAN
- PRML
- nerf
- Today
- Total
목록CODE (1)
KalelPark's LAB
[ CLEAN CODE ] Clean Python, YACS(Yet Another Configuration System)란?
YACS(Yet Another Configuration System)란? - YACS는 실험을 위해 설계된 소프트웨어로 시스템 구성, 정의 및 관리하기 위해 만들어진 경량 시스템이다. 주로 머신러닝에서의 hyperparameter를 관리한다든지, Conv를 관리할 때 사용합니다. - 재현성이 주로 중요하므로, 실험구성을 configuration을 할 수 있는 신뢰할 수 있는 방식이 필요하다. EX> from yacs.config import CfgNode as CN _C = CN() _C.SYSTEM = CN() # Number of GPUS to use in the experiment _C.SYSTEM.NUM_GPUS = 8 # Number of workers for doing things _C.SYS..
Python/CLEAN CODE
2023. 1. 14. 14:31