Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
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.
api = wandb.Api() artifact = api.artifact("[PROJECT]/[ARTIFACT]:[ALIAS]") # artifact からグラフを上方向にたどります: producer_run = artifact.logged_by() # artifact からグラフを下方向にたどります: consumer_runs = artifact.used_by() # run からグラフを下方向にたどります: next_artifacts = consumer_runs[0].logged_artifacts() # run からグラフを上方向にたどります: previous_artifacts = producer_run.used_artifacts()
api = wandb.Api() run = api.run("[ENTITY]/[PROJECT]/[RUN_ID]") # run からグラフを下方向にたどります: produced_artifacts = run.logged_artifacts() # run からグラフを上方向にたどります: consumed_artifacts = run.used_artifacts() # artifact からグラフを上方向にたどります: earlier_run = consumed_artifacts[0].logged_by() # artifact からグラフを下方向にたどります: consumer_runs = produced_artifacts[0].used_by()
Was this page helpful?