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?