A data scientist wants to deploy a trained TensorFlow model to Vertex AI for online predictions. They need to serve predictions with low latency and want to leverage GPU acceleration. Which machine type should they select when creating the Vertex AI endpoint?
Trap 1: n1-standard-4
n1-standard is a CPU-only machine type, does not support GPU.
Trap 2: e2-standard-4
e2-series machines do not support GPUs.
Trap 3: n1-highmem-8
n1-highmem is CPU-only, no GPU support.
- A
n1-standard-4 with 1 NVIDIA Tesla T4
Attaching a GPU to an n1-standard machine enables GPU acceleration.
- B
n1-standard-4
Why wrong: n1-standard is a CPU-only machine type, does not support GPU.
- C
e2-standard-4
Why wrong: e2-series machines do not support GPUs.
- D
n1-highmem-8
Why wrong: n1-highmem is CPU-only, no GPU support.