본문으로 건너뛰기

아티팩트 업데이트

아티팩트의 description, metadata, 그리고 alias를 업데이트하려는 값으로 전달하세요. W&B 서버에서 아티팩트를 업데이트하려면 save() 메소드를 호출하세요. W&B Run 중이거나 Run 외부에서 아티팩트를 업데이트할 수 있습니다.

Run 외부에서 아티팩트를 업데이트하려면 W&B Public API (wandb.Api)를 사용하세요. Run 중에 아티팩트를 업데이트하려면 Artifact API (wandb.Artifact)를 사용하세요.

주의

모델 레지스트리에 연결된 아티팩트의 에일리어스는 업데이트할 수 없습니다.

다음 코드 예제는 wandb.Artifact API를 사용하여 아티팩트의 설명을 업데이트하는 방법을 보여줍니다:

import wandb

run = wandb.init(project="<example>", job_type="<job-type>")
artifact = run.use_artifact("<artifact-name>:<alias>")

artifact = wandb.Artifact("")
run.use_artifact(artifact)
artifact.description = "<description>"
artifact.save()
Was this page helpful?👍👎