Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 3.16 KB

Challenge-00.md

File metadata and controls

54 lines (44 loc) · 3.16 KB

Challenge 0: Prerequisites

Home - Next Challenge >

Introduction

Similar to DevOps, MLOps is a very broad topic and you have lots of choices when it comes to the tools that you use. In this challenge, our focus is to make sure you have right tools installed on your computer.

Description

In this challenge we'll be setting up all the tools we will need to complete our challenges.

  • Azure subscription. If you do not have one, you can sign up for a free trial. Ensure you can create the following Azure resources:
    • Application Insights
    • Azure Container Registry
    • Azure Container Instance
    • Azure Machine Learning
    • KeyVault
    • Storage Account
  • Azure Machine Learning service workspace - It is a foundational resource in the cloud that you use to experiment, train, and deploy machine learning models.
  • Azure DevOps organization. If you do not have one, you can sign up for a free account.
    • Install Azure DevOps Machine Learning extension.

    • Request Admin access to create Service Connections within Azure DevOps to connect with Azure ML Workspace. If the access is not granted, have admin create those service connections ahead of time. To do that, create a new project and create new service connections in Project Settings for your Azure Subscription and Azure ML service using a Azure Resource Manager service principal.

      Note: Azure ML Workspace must be created first before creating Service Connections.

  • Python Installation, version at least >= 3.6.5. Anaconda is more preferred for Data Science tasks.
  • Ensure Python modules are available to download via pip (from PyPI or from an internal package manager).
    • azure-cli==2.22.1
    • azureml-sdk[cli]
    • azureml-sdk[notebooks]
    • azureml-defaults
    • azureml-model-management-sdk
    • joblib
    • matplotlib
    • numpy
    • pandas
    • pynacl
    • scipy
    • scikit-learn
    • seaborn
    • statsmodels
  • Visual Studio Code or any Python IDE
    • Python extensions

NOTE: You will need privileges to create projects in the Azure DevOps organization. Also, you need privileges to create Service Principal in the tenant that has Contributor RBAC access to your subscription/resource group. This translates to Ensure that the user has 'Owner' or 'User Access Administrator' permissions on the Subscription.

Success Criteria

  • You have an Azure ML Workspace created on your Azure subscription.
  • You have an Azure DevOps account with Azure Machine Learning extension installed.
  • You have python installed along with some IDE to run python code.