> ## 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.

# 각 artifact 버전은 저장소를 얼마나 사용하나요?

두 artifact 버전 사이에서 변경된 파일에 대해서만 저장소 비용이 발생합니다.

<Frame>
  <img src="https://mintcdn.com/wb-21fd5541/wKCrMJZKG3PxyJhv/images/artifacts/artifacts-dedupe.PNG?fit=max&auto=format&n=wKCrMJZKG3PxyJhv&q=85&s=809a615e905c0c439375820e8a6bb5b3" alt="artifact 중복 제거" width="1060" height="595" data-path="images/artifacts/artifacts-dedupe.PNG" />
</Frame>

예를 들어, `cat.png`와 `dog.png`라는 두 개의 이미지 파일이 포함된 `animals`라는 이름의 이미지 artifact를 생각해 보겠습니다:

```text theme={null}
images
|-- cat.png (2MB) # `v0`에서 추가됨
|-- dog.png (1MB) # `v0`에서 추가됨
```

이 artifact에는 버전 `v0`가 할당됩니다.

새 이미지 `rat.png`를 추가하면 W\&B가 다음 내용을 포함하는 새 아티팩트 버전 `v1`을 생성합니다:

```text theme={null}
images
|-- cat.png (2MB) # `v0`에서 추가됨
|-- dog.png (1MB) # `v0`에서 추가됨
|-- rat.png (3MB) # `v1`에서 추가됨
```

버전 `v1`은 총 6 MB를 추적하지만, 나머지 3 MB를 `v0`와 공유하므로 실제로는 3 MB의 공간만 차지합니다. `v1`을 삭제하면 `rat.png`와 연결된 3 MB의 저장소가 회수됩니다. `v0`를 삭제하면 `cat.png`와 `dog.png`의 저장소 비용이 `v1`로 이전되어 저장소 크기가 6 MB로 증가합니다.

***

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