Path1.Mod1.a - Explore ML Workspace - Setting Up Your Workspace Flashcards

1
Q

O C R AMLDS AMLCO AMLRU

Six built in RBACs for controlling workspace access

A
  • Owner
  • Contributor - can’t grant access
  • Reader - read only
  • Azure ML Data Scientist - excludes create Compute or edit workspace settings
  • Azure ML Compute Operator - can manage all Compute in the workspace
  • Azure ML Registry User - Manages a Registry ie read/write/delete/promote Models in the Registry. Cannot create new or delete existing Registries
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Sequence for creating an ML Service/Resource

The step that creates the ML Workspace

A

Log into Azure Portal
=> Azure Subscription
==> Create Resource Group
====> Create ML Service/Resource (to create the workspace)
=====> Auto-Created Resources

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The four Azure Resources created when creating an ML Service/Resource

A

Azure Storage Account
Azure Key Vault
Azure Insights
Azure Container Registry

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

4 Ways to create a Workspace

A
  1. Azure Portal
  2. ARM Template
  3. Azure CLI
  4. Azure ML Python SDK
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Study Code example; Describe what it does:

from azure.ai.ml.entities import Workspace
workspace_name = "mlw-example"

ws_basic = Workspace(
    name=workspace_name,
    location="eastus",
    display_name="Basic workspace-example",
    description="This example shows how to create a basic workspace",
)
ml_client.workspaces.begin_create(ws_basic)
A

It creates a Workspace named “mlw-example” using the Python SDK, Region “East US”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

TS E R, DA Dep ReCom

The three organizational setups for ML Solutions

Three common considerations between all three

A

Team Structure, Environment and Regional Setups

Data Access, Managing Deployment across Environments, Results Comparisons

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define Environment and give examples

A

“A collection of resources targeted by a deployment process, based on their stage in the application lifecycle”

Examples: Dev (Local), Test, QA, Staging, Production

How well did you know this?
1
Not at all
2
3
4
5
Perfectly