본문 바로가기

ERROR!

tensorboard "No dashboards are active" 오류? 바로 wandb로 갈아타기

tensorboard에서 wandb로 갈아타기

 

tacotron2를 training하면서 tensorboard error가 진짜 많이 일어났다.

가장 최근에 발생한 오류는 event log랑 다 저장되어있는데 no dashboard are active라고 뜨면서 안되는 오류,,,

No dashboards are active for the current data set.
Probable causes:

You haven’t written any data to your event files.
TensorBoard can’t find your event files.
If you’re new to using TensorBoard, and want to find out how to add data and set up your event files, check out the README and perhaps the TensorBoard tutorial.
If you think TensorBoard is configured properly, please see the section of the README devoted to missing data problems and consider filing an issue on GitHub.

버전문제인가 싶어서 tensorboard 재설치도 해보고 포트도 바꿔보고 command도 바꿔보고 했는데 해결이 안된다...

근데 놀랍게도 tensorboard가 아니라 wandb랑 연동해서 여니까 잘 나옴...ㅎㅎㅎㅎㅎㅎㅎ...

 

wandb에서 tensorboard가 실행되는 모습

 

연동도 겁나 쉽다.

코드 몇줄만 추가하면 tensorboard에서 wandb로 갈아탈 수 있다.

 

나 이제 텐서보드 안쓸거야...(제발 안쓰게해주세요)

 

training.py에 아래 코드만 추가하면 tensorboard를 wandb에서 불러올 수 있다.

import wandb

wandb.init(project="my-project", sync_tensorboard=True)

 

참고

https://docs.wandb.ai/ko/guides/integrations/tensorboard

 

TensorBoard | Weights & Biases 선적 서류 비치

1줄의 코드로 호스팅되는 TensorBoard

docs.wandb.ai

https://docs.wandb.ai/ko/guides/integrations/tensorflow

 

TensorFlow | Weights & Biases 선적 서류 비치

TensorBoard를 이미 사용하고 있다면 wandb와 쉽게 통합할 수 있습니다.

docs.wandb.ai