关于“在 BigQuery ML 中使用分类模型预测访问者购买情况”的评价

108754 条评价

Mohan C. · 已于 about 3 years前审核

Sahil K. · 已于 about 3 years前审核

SNEHA J. · 已于 about 3 years前审核

This was probably the most interesting lab I have done so far. I enjoyed how the sections were clearly explained and sufficient time was given to complete the lab.

Pranamya R. · 已于 about 3 years前审核

chaitanya b. · 已于 about 3 years前审核

Deepak M. · 已于 about 3 years前审核

RUSHABH A. · 已于 about 3 years前审核

Shubhada S. · 已于 about 3 years前审核

Charul G. · 已于 about 3 years前审核

Nandini S. · 已于 about 3 years前审核

Seee100 E. · 已于 about 3 years前审核

Utkarsh A. · 已于 about 3 years前审核

ankit m. · 已于 about 3 years前审核

Ananya T. · 已于 about 3 years前审核

Bhuvan S. · 已于 about 3 years前审核

Asutosh Rath G. · 已于 about 3 years前审核

Samiksha V. · 已于 about 3 years前审核

Pranalee N. · 已于 about 3 years前审核

Amazing Lab

Sanjana G. · 已于 about 3 years前审核

Kishore K. · 已于 about 3 years前审核

NAMITH R. · 已于 about 3 years前审核

Sinethemba N. · 已于 about 3 years前审核

Naga Haritha S. · 已于 about 3 years前审核

The model creation query provided at Task 7(2) is incorrect. Here is the correct query: CREATE OR REPLACE MODEL `ecommerce.classification_model_2` OPTIONS (model_type='logistic_reg', labels = ['will_buy_on_return_visit']) AS WITH all_visitor_stats AS ( 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 ) # add in new features SELECT * EXCEPT(unique_session_id) FROM ( SELECT CONCAT(fullvisitorid, CAST(visitId AS STRING)) AS unique_session_id, # labels will_buy_on_return_visit, MAX(CAST(h.eCommerceAction.action_type AS INT64)) AS latest_ecommerce_progress, # behavior on the site IFNULL(totals.bounces, 0) AS bounces, IFNULL(totals.timeOnSite, 0) AS time_on_site, IFNULL(totals.pageviews, 0) AS pageviews, # where the visitor came from trafficSource.source, trafficSource.medium, channelGrouping, # mobile or desktop device.deviceCategory, # geographic IFNULL(geoNetwork.country, "") AS country FROM `data-to-insights.ecommerce.web_analytics`, UNNEST(hits) AS h JOIN all_visitor_stats USING(fullvisitorid) WHERE 1=1 # only predict for new visits AND totals.newVisits = 1 AND date BETWEEN '20160801' AND '20170430' # train 9 months GROUP BY unique_session_id, will_buy_on_return_visit, bounces, time_on_site, pageviews, trafficSource.source, trafficSource.medium, channelGrouping, device.deviceCategory, country );

Chowdhury Mohammad I. · 已于 about 3 years前审核

Aakriti G. · 已于 about 3 years前审核

我们无法确保发布的评价来自已购买或已使用产品的消费者。评价未经 Google 核实。