> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 아티팩트를 레지스트리에 연결할 수 없는 이유는 무엇인가요?

아티팩트를 W\&B 레지스트리에 연결할 수 없다면, 가장 흔한 원인은 해당 아티팩트가 팀 entity가 아니라 개인 entity로 로깅되었기 때문입니다. 조직의 팀에서 로깅된 아티팩트만 해당 조직의 레지스트리에 연결할 수 있습니다. 이 페이지에서는 아티팩트를 팀 entity로 로깅해 레지스트리에 연결할 수 있도록 하는 방법과, 이미 아티팩트를 개인 entity로 로깅한 경우 어떻게 해야 하는지 설명합니다.

<div id="log-artifacts-with-a-team-entity">
  ## 팀 entity로 아티팩트 로깅하기
</div>

아티팩트를 레지스트리에 연결할 수 있으려면 조직에 속한 팀 entity에서 해당 아티팩트를 로깅해야 합니다. run을 초기화할 때 `entity`에 팀을 지정하세요.

`[TEAM-ENTITY]`, `[PROJECT-NAME]`, `[ARTIFACT-NAME]`, `[TYPE]`를 팀, 프로젝트, 아티팩트, 유형에 맞는 값으로 바꾸세요:

```python theme={null}
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`는 개인 계정일 수 있습니다.

<div id="find-your-team-entity">
  ## 팀 entity 찾기
</div>

팀 entity는 팀 이름과 동일합니다. 팀의 W\&B 프로필 페이지로 이동해 확인하세요. URL은 `https://wandb.ai/[TEAM]` 형식이며, 여기서 `[TEAM]`은 팀 entity입니다.

<div id="re-log-artifacts-logged-to-a-personal-entity">
  ## 개인 entity에 로깅된 아티팩트 다시 로깅하기
</div>

아티팩트를 이미 개인 entity에 로깅했다면, 조직 내 팀 entity에 다시 로깅하세요.

자세한 내용은 [버전을 컬렉션에 연결하기](/ko/models/registry/link_version/)를 참조하세요.

***

<Badge stroke shape="pill" color="orange" size="md">[Artifacts](/ko/support/models/tags/artifacts)</Badge>
