Google Cloud Professional Machine Learning Engineer — Question 160

You work for a hospital that wants to optimize how it schedules operations. You need to create a model that uses the relationship between the number of surgeries scheduled and beds used. You want to predict how many beds will be needed for patients each day in advance based on the scheduled surgeries. You have one year of data for the hospital organized in 365 rows.

The data includes the following variables for each day:
• Number of scheduled surgeries
• Number of beds occupied
• Date

You want to maximize the speed of model development and testing. What should you do?

Answer options

Correct answer: D

Explanation

The correct answer is D because it leverages Vertex AI AutoML Forecasting, which is designed for time series data and can incorporate both covariates and time variables effectively. Option A is focused on regression which may not fully capture the temporal dynamics required. Option B is not suitable as it uses ARIMA, which is not optimized for the combination of covariates and time in the same manner. Option C does not utilize forecasting capabilities which are crucial for predicting bed usage over time.