
Ultimate access to all questions.
In your role at a manufacturing company, you're tasked with predicting failures of a high-value machine equipped with multiple sensors. Historical hourly sensor readings and failure events are stored in BigQuery. Your goal is to predict if the machine will fail within the next 3 days to schedule timely maintenance. The solution must consider cost-effectiveness, scalability for thousands of machines, and compliance with data privacy regulations. What are the optimal data preparation and model training steps? Choose the best two options.
A
Data preparation: Daily min value feature engineering; Model training: Logistic regression with BQML and AUTO_CLASS_WEIGHTS set to True
B
Data preparation: Rolling average feature engineering; Model training: Logistic regression with BQML and AUTO_CLASS_WEIGHTS set to False
C
Data preparation: Daily max value feature engineering; Model training: AutoML classification with BQML
D
Data preparation: Rolling average feature engineering; Model training: Logistic regression with BQML and AUTO_CLASS_WEIGHTS set to True
E
Data preparation: Rolling average and standard deviation feature engineering; Model training: XGBoost with BQML and AUTO_CLASS_WEIGHTS set to True