Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect Azure Data lake storage to Azure ML?

Hi i am started to learning the azure data lake and azure machine learning ,i need to use the azure data lake storage as a azure machine learning studio input data .There have a any options are there, i gone through the azure data lake and machine learning documentation but i can't reach that,finally i got one solution on this link but they are mentioning there is no option for it,but this post is old one,so might be the Microsoft people added the future on it if it's please let me know, let me know Thank you.

like image 519
Anubhav Jain Avatar asked Oct 17 '22 16:10

Anubhav Jain


1 Answers

I recommend the following:

  • Get a tenant ID, client ID, and client secret for your ADLS using the tutorial here.
  • Install the azure-datalake-store Python package on AML Studio by attaching it as a Script Bundle to an Execute Python Script module.
  • In the Execute Python Script module, import the azure-datalake-store package and connect to the ADLS with your tenant ID, client ID, and client secret.
  • Download the data you need from ADLS and convert it into a dataframe within the Python Script module; return that dataframe to make the data available in the rest of AML Studio.
like image 114
mewahl Avatar answered Nov 01 '22 09:11

mewahl