Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-update-training-api-26.mintlify.app/llms.txt

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

以前に記録された Run の出力として Artifacts をマークする必要がある場合があります。この場合、以下のように古い Run を再初期化して、新しい Artifacts をログに記録します。
with wandb.init(id="existing_run_id", resume="allow") as run:
    # アーティファクトを作成
    artifact = wandb.Artifact("artifact_name", "artifact_type")
    # ファイルを追加
    artifact.add_file("my_data/file.txt")
    # Run にアーティファクトをログとして記録
    run.log_artifact(artifact)