修正: チーム entity を使ってアーティファクトをログする
entity にチームを指定します:
entity を指定しない場合、run には既定の entity が使用されます。これは個人のアカウントである可能性があります。
チーム entity を検索する
https://wandb.ai/<team> の形式で、<team> がチーム entity です。
個人 entity にすでにログされていますか?
Artifacts
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.
entity にチームを指定します:
import wandb
with wandb.init(entity="<team_entity>", project="<project_name>") as run:
artifact = wandb.Artifact(name="<artifact_name>", type="<type>")
# ファイルを追加してアーティファクトをログする
entity を指定しない場合、run には既定の entity が使用されます。これは個人のアカウントである可能性があります。
https://wandb.ai/<team> の形式で、<team> がチーム entity です。
Was this page helpful?