Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-john-wbdocs-2044-rename-serverless-products.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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"]
            )
        }
    )
複数線プロットの詳細については、Multi-line タブのこちらを参照してください。
Experiments