Skip to content

Latest commit

 

History

History
73 lines (24 loc) · 2.38 KB

README.MD

File metadata and controls

73 lines (24 loc) · 2.38 KB

Experimenting with GCP - Bigquery creating ML model. Tutorial for self learning purpose only.

For more details & instructions - https://cloud.google.com/bigquery-ml/docs/bigqueryml-web-ui-start

1 Using BigQuery create a regression model using public datasets predict whether a website visitor will make a transaction

  1. create model SQL command

  2. Evaluate your model

  3. Predict model on the number of visitors from different countries will maka a transaction.

image

image

image

image

Create a logistic regression model using Google Analytics Sample dataset for BigQuery. This create model command trains the model using the data retrieved from select command.

image

image

It runs few iterations.

image

Model statistics displayed in Graph. There is also Table format available.

image

Evaluate the model - Lables are 0 and 1 which represents no transactions and transactions made

image

image

image

This query provides the prediction for website visitors from each country and number of transactions made.

image

image