/ 문자는 W&B UI에서 로깅된 패널을 구분합니다. 기본적으로는 로깅된 항목 이름에서 / 앞부분이 “Panel Section”이라는 패널 그룹을 정의합니다.
/로 구분된 모든 세그먼트를 기준으로 하도록 조정합니다.
Experiments
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
/ 문자는 W&B UI에서 로깅된 패널을 구분합니다. 기본적으로는 로깅된 항목 이름에서 / 앞부분이 “Panel Section”이라는 패널 그룹을 정의합니다.
import wandb
with wandb.init() as run:
run.log({"val/loss": 1.1, "val/acc": 0.3})
run.log({"train/loss": 0.1, "train/acc": 0.94})
/로 구분된 모든 세그먼트를 기준으로 하도록 조정합니다.
Was this page helpful?