수정: 팀 entity로 아티팩트 로깅하기
entity에 팀을 지정하세요:
entity를 지정하지 않으면 run은 기본 entity를 사용하며, 이 기본 entity는 개인 계정일 수도 있습니다.
팀 entity 찾기
https://wandb.ai/<team> 형식이며, 여기서 <team>은 팀 entity입니다.
이미 개인 entity에 로깅하셨나요?
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.
entity에 팀을 지정하세요:
import wandb
with wandb.init(entity="<team_entity>", project="<project_name>") as run:
artifact = wandb.Artifact(name="<artifact_name>", type="<type>")
# 파일을 추가하고 아티팩트를 로그합니다
entity를 지정하지 않으면 run은 기본 entity를 사용하며, 이 기본 entity는 개인 계정일 수도 있습니다.
https://wandb.ai/<team> 형식이며, 여기서 <team>은 팀 entity입니다.
Was this page helpful?