wandb.plot.line_series()를 사용해 여러 선이 있는 맞춤형 차트를 만드세요. 선 차트를 보려면 프로젝트 페이지로 이동하세요. 범례를 추가하려면 wandb.plot.line_series()에 keys 인수를 포함하세요. 예를 들면 다음과 같습니다:
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.
wandb.plot.line_series()를 사용해 여러 선이 있는 맞춤형 차트를 만드세요. 선 차트를 보려면 프로젝트 페이지로 이동하세요. 범례를 추가하려면 wandb.plot.line_series()에 keys 인수를 포함하세요. 예를 들면 다음과 같습니다:
with wandb.init(project="my_project") as run:
run.log(
{
"my_plot": wandb.plot.line_series(
xs=x_data, ys=y_data, keys=["metric_A", "metric_B"]
)
}
)
Was this page helpful?