How can I access the data logged to my runs directly and programmatically?
less than a minute
The history object tracks metrics logged with wandb.log
. Access the history object using the API:
api = wandb.Api()
run = api.run("username/project/run_id")
print(run.history())
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.