关于“運用 BigQuery ML 建立機器學習模型:挑戰實驗室”的评价
评论
The lab doesn't work properly
Zuzanna M. · 评论over 1 year之前
Kevin C. · 评论over 1 year之前
I don't understand the task descriptions??? sometimes it says linear and sometimes logistic, I don't know what is the purpose of the task to be done
Zuzanna M. · 评论over 1 year之前
Christian A. · 评论over 1 year之前
Patrick L. · 评论over 1 year之前
Halimathu S. · 评论over 1 year之前
Bhagyashree P. · 评论over 1 year之前
Aman N. · 评论over 1 year之前
Camille H. · 评论over 1 year之前
Zhenru C. · 评论over 1 year之前
Zhenru C. · 评论over 1 year之前
Жандос О. · 评论over 1 year之前
Octavia R. · 评论over 1 year之前
Task 3 doesn't work
Pierpaolo S. · 评论over 1 year之前
Md I. · 评论over 1 year之前
Ozana I. · 评论over 1 year之前
I finished Task 3 by creating and evaluating the new model improved_customer_classification_model with the required additional features, but it would never mark it as complete. Here's the query I used to create the model: CREATE OR REPLACE MODEL `ecommerce.improved_customer_classification_model` OPTIONS ( model_type='logistic_reg', labels = ['will_buy_on_return_visit'] ) AS #standardSQL SELECT * EXCEPT(fullVisitorId) FROM # features (SELECT fullVisitorId, IFNULL(totals.bounces, 0) AS bounces, IFNULL(totals.timeOnSite, 0) AS time_on_site, IFNULL(totals.pageviews, 0) AS pageviews, trafficSource.source, trafficSource.medium, channelGrouping, # mobile or desktop device.deviceCategory, # geographic IFNULL(geoNetwork.country, "") AS country FROM `data-to-insights.ecommerce.web_analytics` WHERE totals.newVisits = 1 AND date BETWEEN '20160801' AND '20170430') # train on first 9 months JOIN (SELECT fullvisitorid, IF(COUNTIF(totals.transactions > 0 AND totals.newVisits IS NULL) > 0, 1, 0) AS will_buy_on_return_visit FROM `data-to-insights.ecommerce.web_analytics` GROUP BY fullvisitorid) USING (fullVisitorId) ; And here's how I evaluated it: SELECT roc_auc, CASE WHEN roc_auc > .9 THEN 'good' WHEN roc_auc > .8 THEN 'fair' WHEN roc_auc > .7 THEN 'decent' WHEN roc_auc > .6 THEN 'not great' ELSE 'poor' END AS model_quality FROM ML.EVALUATE(MODEL ecommerce.improved_customer_classification_model, ( #standardSQL SELECT * EXCEPT(fullVisitorId) FROM # features (SELECT fullVisitorId, IFNULL(totals.bounces, 0) AS bounces, IFNULL(totals.timeOnSite, 0) AS time_on_site, IFNULL(totals.pageviews, 0) AS pageviews, trafficSource.source, trafficSource.medium, channelGrouping, # mobile or desktop device.deviceCategory, # geographic IFNULL(geoNetwork.country, "") AS country FROM `data-to-insights.ecommerce.web_analytics` WHERE totals.newVisits = 1 AND date BETWEEN '20160801' AND '20170430') # train on first 9 months JOIN (SELECT fullvisitorid, IF(COUNTIF(totals.transactions > 0 AND totals.newVisits IS NULL) > 0, 1, 0) AS will_buy_on_return_visit FROM `data-to-insights.ecommerce.web_analytics` GROUP BY fullvisitorid) USING (fullVisitorId) ));
Adam W. · 评论over 1 year之前
Kevin C. · 评论over 1 year之前
Juan Carlos B. · 评论over 1 year之前
Manish S. · 评论over 1 year之前
Jesús Arnulfo C. · 评论over 1 year之前
Ilyas N. · 评论over 1 year之前
William B. · 评论over 1 year之前
Shannon M. · 评论over 1 year之前
Shannon M. · 评论over 1 year之前
我们无法确保发布的评价来自已购买或已使用产品的消费者。评价未经 Google 核实。