> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-docs-sandboxes-integrations-placement.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# GPU에서 W&B Launch를 TensorFlow와 함께 작동시키는 방법

W\&B Launch로 GPU에서 TensorFlow 작업을 실행하려면 컨테이너 빌드에 맞춤형 베이스 이미지를 지정하세요. 이렇게 하면 생성된 컨테이너가 GPU에 액세스할 수 있습니다. 예를 들어, 리소스 설정의 `builder.accelerator.base_image` 키 아래에 이미지 태그를 추가합니다.

```json theme={null}
{
    "gpus": "all",
    "builder": {
        "accelerator": {
            "base_image": "tensorflow/tensorflow:latest-gpu"
        }
    }
}
```

<Note>
  W\&B 0.15.6 이전 버전에서는 `base_image`의 부모 키로 `accelerator` 대신 `cuda`를 사용하세요.
</Note>
