Topic 1 Question 304
You are an AI engineer that works for a popular video streaming platform. You built a classification model using PyTorch to predict customer churn. Each week, the customer retention team plans to contact customers that have been identified as at risk of churning with personalized offers. You want to deploy the model while minimizing maintenance effort. What should you do?
Use Vertex AI’s prebuilt containers for prediction. Deploy the container on Cloud Run to generate online predictions.
Use Vertex AI’s prebuilt containers for prediction. Deploy the model on Google Kubernetes Engine (GKE), and configure the model for batch prediction.
Deploy the model to a Vertex AI endpoint, and configure the model for batch prediction. Schedule the batch prediction to run weekly.
Deploy the model to a Vertex AI endpoint, and configure the model for online prediction. Schedule a job to query this endpoint weekly.
ユーザの投票
コメント(1)
- 正解だと思う選択肢: C
(Gemini Explanation) Vertex AI Batch Prediction: This service is specifically designed for batch inference, making it ideal for processing large datasets and generating predictions offline. Scheduled Jobs: Vertex AI allows you to schedule batch prediction jobs, automating the weekly process and eliminating the need for manual intervention. Minimized Maintenance: Vertex AI handles the underlying infrastructure, reducing the maintenance burden compared to managing a Kubernetes cluster or manually querying an online endpoint. Cost Efficiency: Batch prediction is generally more cost-effective for large-scale offline processing than repeatedly querying an online endpoint.
👍 1yokoyan2025/03/05
シャッフルモード