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
- clean code
- PRML
- pytorch
- Vision
- FGVC
- Depth estimation
- algorithm
- 딥러닝
- SSL
- nerf
- Torch
- Front
- computervision
- 알고리즘
- 3d
- REACT
- 자료구조
- Meta Learning
- Python
- cs
- GAN
- nlp
- math
- FineGrained
- 머신러닝
- CV
- classification
- dl
- ML
- web
- Today
- Total
KalelPark's LAB
[ CLEAN CODE ] Clean Python, YACS(Yet Another Configuration System)란? 본문
Python/CLEAN CODE
[ CLEAN CODE ] Clean Python, YACS(Yet Another Configuration System)란?
kalelpark 2023. 1. 14. 14:31
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.SYSTEM.NUM_WORKERS = 4
_C.TRAIN = CN()
# A very important hyperparameter
_C.TRAIN.HYPERPARAMETER_1 = 0.1
# The all important scales for the stuff
_C.TRAIN.SCALES = (2, 4, 8, 16)
def get_cfg_defaults():
"""Get a yacs CfgNode object with default values for my_project."""
# Return a clone so that the defaults will not be altered
# This is for the "local variable" use pattern
return _C.clone()
temp = get_cfg_defaults()
print(temp)
// Output
SYSTEM:
NUM_GPUS: 8
NUM_WORKERS: 4
TRAIN:
HYPERPARAMETER_1: 0.1
SCALES: (2, 4, 8, 16)
참고
https://github.com/rbgirshick/yacs
'Python > CLEAN CODE' 카테고리의 다른 글
[ CLEAN CODE ] Clean Python, Numpy with Linear Algebra (0) | 2023.01.21 |
---|---|
[ CLEAN CODE ] Clean Python, broadcast_to, linspace란? (0) | 2023.01.21 |
[ CLEAN CODE ] Clean Python, StaticMethod, ClassMethod란? (0) | 2023.01.13 |
[ CLEAN CODE ] Clean Python, Logging 활용하기 (0) | 2023.01.02 |
[ CLEAN CODE ] Clean Python, Dictionary 활용하기 (0) | 2023.01.02 |
Comments