- À partir d’un artifact
- À partir d’un run
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.
api = wandb.Api()
artifact = api.artifact("project/artifact:alias")
# Remonter le graphe à partir d’un artifact :
producer_run = artifact.logged_by()
# Descendre le graphe à partir d’un artifact :
consumer_runs = artifact.used_by()
# Descendre le graphe à partir d’un run :
next_artifacts = consumer_runs[0].logged_artifacts()
# Remonter le graphe à partir d’un run :
previous_artifacts = producer_run.used_artifacts()
api = wandb.Api()
run = api.run("entity/project/run_id")
# Descendre le graphe à partir d’un run :
produced_artifacts = run.logged_artifacts()
# Remonter le graphe à partir d’un run :
consumed_artifacts = run.used_artifacts()
# Remonter le graphe à partir d’un artifact :
earlier_run = consumed_artifacts[0].logged_by()
# Descendre le graphe à partir d’un artifact :
consumer_runs = produced_artifacts[0].used_by()
Was this page helpful?