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

# GPU 上で TensorFlow と連携して W&B Launch を動作させる方法

GPU で W\&B Launch を使用して 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>
