How to connect Azure Machine Learning Studio to Google BigQuery?

We are trying to use Vector Vector Machines to predict in our dataset, but with 70,000 rows and 7 functions - we tried SVM in Google DataLabs, but our dataset is too large to count on DataLabs VM at any reasonable time.

We would like to use an approach that scales statistical approaches in processor cores, such as the version of Revolution Analytics R on Azure Machine Learning Studio, but our data is in Google BigQuery.

How do we connect R script to Azure Machine Learning Studio to use our dataset in Google BigQuery?

+5
source share
1 answer

You can pull data from Execute Python script module using http request or sdk for Google python ( https://cloud.google.com/bigquery/exporting-data-from-bigquery ). than add an "Execute R script" with your logic

0
source

Source: https://habr.com/ru/post/1247654/


All Articles