Create ML Models with BigQuery ML: Challenge Lab Reviews
36074 reviews
Gerardo G. · Reviewed 10 months ago
Sujal M. · Reviewed 10 months ago
kashyap a. · Reviewed 10 months ago
Miguel E. · Reviewed 10 months ago
Guilherme M. · Reviewed 10 months ago
Luiz Antonio C. · Reviewed 10 months ago
Mônica F. · Reviewed 10 months ago
No way to check as done task 4. --busiest bike sharing station in 2019 (based on the number of trips per station in 2019) where the subscriber type is 'Single Trip'. WITH t1 AS ( select start_station_name, count(*) as trips FROM `bigquery-public-data.austin_bikeshare.bikeshare_trips` WHERE EXTRACT(YEAR FROM start_time) = 2019 AND subscriber_type = 'Single Trip' GROUP BY 1 ORDER BY 2 DESC LIMIT 1 ) --predict the average trip duration for all trips from the busiest bike sharing station in 2019 (based on the number of trips per station in 2019) where the subscriber type is 'Single Trip'. SELECT AVG(predicted_duration_minutes) as avg_predicted_duration_minutes, AVG(duration_minutes) as avg_duration_minutes FROM ML.PREDICT( MODEL `qwiklabs-gcp-01-fff487b8bf0c.austin.subscriber_model`, ( SELECT -- label col bkt.duration_minutes AS duration_minutes, --features bkt.start_station_name, EXTRACT(HOUR FROM bkt.start_time) AS start_hour, bkt.subscriber_type as subscriber_type, FROM `bigquery-public-data.austin_bikeshare.bikeshare_trips` bkt WHERE 1=1 AND EXTRACT(YEAR FROM bkt.start_time) = 2019 AND bkt.subscriber_type = 'Single Trip' AND bkt.start_station_name = (select t1.start_station_name from t1) ))
Miguel M. · Reviewed 10 months ago
Arvind P. · Reviewed 10 months ago
Rosana A. · Reviewed 10 months ago
Natalia S. · Reviewed 10 months ago
kirandeep k. · Reviewed 10 months ago
Heejung K. · Reviewed 11 months ago
Noor A. · Reviewed 11 months ago
Kaushik D. · Reviewed 11 months ago
No way to check as done task 4.
Miguel M. · Reviewed 11 months ago
Lavinia S. · Reviewed 11 months ago
Bhavi G. · Reviewed 11 months ago
Yowan N. · Reviewed 11 months ago
No way to check as done task 2.
Miguel M. · Reviewed 11 months ago
Task 3 bogged as it didn't find the trained model
Asitho D. · Reviewed 11 months ago
Edgar D. · Reviewed 11 months ago
Apoorwa A. · Reviewed 11 months ago
Lakshmanan T. · Reviewed 11 months ago
Mateus M. · Reviewed 11 months ago
We do not ensure the published reviews originate from consumers who have purchased or used the products. Reviews are not verified by Google.