How do I log a list of values?
Support:
less than a minute
다음 예제는 wandb.log()
를 사용하여 여러 가지 방법으로 손실을 기록하는 방법을 보여줍니다.
wandb.log({f"losses/loss-{ii}": loss for ii,
loss in enumerate(losses)})
# 손실을 히스토그램으로 변환합니다.
wandb.log({"losses": wandb.Histogram(losses)})
자세한 내용은 로깅에 대한 문서를 참조하세요.
피드백
이 페이지가 도움이 되었나요?
Glad to hear it! If you have further feedback, please let us know.
Sorry to hear that. Please tell us how we can improve.