How can I access the data logged to my runs directly and programmatically?

history 오브젝트는 wandb.log 로 로그된 메트릭을 추적합니다. API를 사용하여 history 오브젝트에 엑세스하세요:

api = wandb.Api()
run = api.run("username/project/run_id")
print(run.history())