본 글은 필자의 이해를 돕기 위해 작성된 글로 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
참고자료1
wandb.log: Data visualization
참고자료1
wandb profiler
참고자료1 참고자료2