Artifacts
기존 run에 artifact를 로깅하려면 어떻게 하나요?
경우에 따라 artifact를 기존에 로깅한 run의 출력으로 표시해야 할 수 있습니다. 이 경우에는 이전 run을 다시 초기화한 다음, 아래와 같이 새 artifact를 로깅하세요:
Artifacts
Artifacts
Was this page helpful?
⌘I
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.
with wandb.init(id="existing_run_id", resume="allow") as run:
artifact = wandb.Artifact("artifact_name", "artifact_type")
artifact.add_file("my_data/file.txt")
run.log_artifact(artifact)
Was this page helpful?