项目作者: lebedov

项目描述 :
Using Dask-ML on Azure ML
高级语言: Python
项目地址: git://github.com/lebedov/dask-ml-on-azure-ml.git
创建时间: 2019-11-20T14:08:35Z
项目社区:https://github.com/lebedov/dask-ml-on-azure-ml

开源协议:MIT License

下载


Using Dask-ML on Azure ML

This repository contains a simple demo of how to run
dask-ml functions
on an Azure ML compute cluster. The demo takes advantage of dask-mpi to simplify cluster setup.

Instructions

  • Install Anaconda or Miniconda

  • Create and activate a Python 3 environment:

    1. conda create azureml
    2. conda activate azureml
  • Install Azure ML SDK:

    1. pip install azureml-sdk
  • Create a new Azure ML workspace

  • Clone this repository and create a config.json file in the repository directory containing your Azure ML subscription, tenant ID, resource group, workspace name, and your preferred names for the compute cluster and experiment. The file should look like the following:

    1. {
    2. "tenant_id": "WWWWWWWW-WWWW-WWWW-WWWW-WWWWWWWWWWWW",
    3. "subscription_id":"XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX",
    4. "resource_group": "YYYYYYYY",
    5. "workspace_name": "ZZZZZZZZ",
    6. "compute_name": "AAAAAAAA",
    7. "experiment_name": "BBBBBBBB"
    8. }
  • Run the demo as follows:

    1. python run.py
  • Once the demo has finished, you can view the results in the Azure portal.