Data Analysis and Presentation1 / 5
Which SQL statement is used in BigQuery ML to generate predictions from a trained model?
CorrectIncorrect
Alex
In BigQuery ML, ML.PREDICT generates predictions from a trained model by applying it to new data (docs.cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-predict). The standard workflow uses CREATE MODEL for training, ML.EVALUATE for performance metrics, and ML.PREDICT for inference. ML.TRAIN does not exist—model training uses CREATE MODEL syntax. ML.SCORE is not a valid BigQuery ML function. ML.INFER is also not a BigQuery ML function. The correct syntax is SELECT * FROM ML.PREDICT(MODEL project.dataset.model, (SELECT ...)).
Sourcedocs.cloud.google.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account