본 글은 필자의 이해를 돕기 위해 작성된 글로 TensorboardX를 Pytorch에서 구동하는데 일련의 과정을 적은 글입니다.
참고자료1
- wandb: tensorboard와 마찬가지로 모델의 파라미터나 accuracy, loss를 기록하는데 유용한 도구
On terminal) wandb login, init
pip install wandb
wandb login
# then put your api key by accessing this link: https://app.wandb.ai/authorize
wandb init
# set the configuration information ex. entity, project name
wandb.init (configuration for model)
wandb.watch: Trace log (loss etc.)
wandb sweep: Hyperparameter tuning
wandb.log: Data visualization
wandb profiler
'AI, Deep Learning Basics > Basic' 카테고리의 다른 글
[AI602] 1. Vision Transformer (0) | 2022.09.11 |
---|---|
[AI602] AdvancedML Introduction (0) | 2022.09.11 |
Methodology skeletons (0) | 2022.03.19 |
[Basic] Probabilistic model (0) | 2022.03.11 |
[Logger] TensorboardX 사용하기 (0) | 2022.02.19 |