Skip to content

Commit e3bd825

Browse files
committedMay 9, 2023
fix data save bug
1 parent b96b00c commit e3bd825

File tree

3 files changed

+39
-24
lines changed

3 files changed

+39
-24
lines changed
 

‎Labs/03/setup.sh

+23-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
#! /usr/bin/sh
22

3-
# Create workspace
4-
echo "Create a resource group:"
5-
az group create --name "rg-dp100-labs" --location "eastus"
3+
# Set the necessary variables
4+
RESOURCE_GROUP="rg-dp100-labs"
5+
RESOURCE_PROVIDER="Microsoft.MachineLearning"
6+
REGIONS=("eastus" "westus" "centralus" "northeurope" "westeurope" "southeastasia")
7+
RANDOM_REGION=${REGIONS[$RANDOM % ${#REGIONS[@]}]}
8+
WORKSPACE_NAME="mlw-dp100-labs"
9+
10+
# Register the Azure Machine Learning resource provider in the subscription
11+
echo "Register the Machine Learning resource provider:"
12+
az provider register --namespace $RESOURCE_PROVIDER
13+
14+
# Delete the resource group if it already exists to avoid clashes
15+
echo "Delete the resource group" $RESOURCE_GROUP "to avoid clashes:"
16+
az group delete --name $RESOURCE_GROUP
17+
18+
# Create the resource group and workspace and set to default
19+
echo "Create a resource group and set as default:"
20+
az group create --name $RESOURCE_GROUP --location $RANDOM_REGION
21+
az configure --defaults group=$RESOURCE_GROUP
622

723
echo "Create an Azure Machine Learning workspace:"
8-
az ml workspace create --name "mlw-dp100-labs" -g "rg-dp100-labs"
24+
az ml workspace create --name $WORKSPACE_NAME
25+
az configure --defaults workspace=$WORKSPACE_NAME
926

1027
# Create compute instance
1128
guid=$(cat /proc/sys/kernel/random/uuid)
@@ -15,8 +32,8 @@ suffix=${suffix:0:18}
1532
ComputeName="ci${suffix}"
1633

1734
echo "Creating a compute instance with name: " $ComputeName
18-
az ml compute create --name ${ComputeName} --size STANDARD_DS11_V2 --type ComputeInstance -w mlw-dp100-labs -g rg-dp100-labs
35+
az ml compute create --name ${ComputeName} --size STANDARD_DS11_V2 --type ComputeInstance
1936

2037
# Create compute cluster
2138
echo "Creating a compute cluster with name: aml-cluster"
22-
az ml compute create --name "aml-cluster" --size STANDARD_DS11_V2 --max-instances 2 --type AmlCompute -w mlw-dp100-labs -g rg-dp100-labs
39+
az ml compute create --name "aml-cluster" --size STANDARD_DS11_V2 --max-instances 2 --type AmlCompute

‎Labs/09/Run a pipeline job.ipynb

+14-18
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,7 @@
3636
"source": [
3737
"## Connect to your workspace\n",
3838
"\n",
39-
"With the required SDK packages installed, now you're ready to connect to your workspace.\n",
40-
"\n",
41-
"To connect to a workspace, we need identifier parameters - a subscription ID, resource group name, and workspace name. The resource group name and workspace name are already filled in for you. You only need the subscription ID to complete the command.\n",
42-
"\n",
43-
"To find the necessary parameters, click on the subscription and workspace name at the top right of the Studio. A pane will open on the right.\n",
44-
"\n",
45-
"<p style=\"color:red;font-size:120%;background-color:yellow;font-weight:bold\"> Copy the subscription ID and replace **YOUR-SUBSCRIPTION-ID** with the value you copied. </p>"
39+
"With the required SDK packages installed, now you're ready to connect to your workspace."
4640
]
4741
},
4842
{
@@ -58,10 +52,15 @@
5852
},
5953
"outputs": [],
6054
"source": [
61-
"# enter details of your AML workspace\n",
62-
"subscription_id = \"YOUR-SUBSCRIPTION-ID\"\n",
63-
"resource_group = \"rg-dp100-labs\"\n",
64-
"workspace = \"mlw-dp100-labs\""
55+
"from azure.identity import DefaultAzureCredential, InteractiveBrowserCredential\n",
56+
"\n",
57+
"try:\n",
58+
" credential = DefaultAzureCredential()\n",
59+
" # Check if given credential can get token successfully.\n",
60+
" credential.get_token(\"https://management.azure.com/.default\")\n",
61+
"except Exception as ex:\n",
62+
" # Fall back to InteractiveBrowserCredential in case DefaultAzureCredential not work\n",
63+
" credential = InteractiveBrowserCredential()"
6564
]
6665
},
6766
{
@@ -75,12 +74,9 @@
7574
"outputs": [],
7675
"source": [
7776
"from azure.ai.ml import MLClient\n",
78-
"from azure.identity import DefaultAzureCredential\n",
7977
"\n",
80-
"# get a handle to the workspace\n",
81-
"ml_client = MLClient(\n",
82-
" DefaultAzureCredential(), subscription_id, resource_group, workspace\n",
83-
")"
78+
"# Get a handle to workspace\n",
79+
"ml_client = MLClient.from_config(credential=credential)"
8480
]
8581
},
8682
{
@@ -361,7 +357,7 @@
361357
" type: uri_file\n",
362358
"outputs:\n",
363359
" output_data:\n",
364-
" type: uri_file\n",
360+
" type: uri_folder\n",
365361
"code: ./src\n",
366362
"environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu@latest\n",
367363
"command: >-\n",
@@ -388,7 +384,7 @@
388384
"type: command\n",
389385
"inputs:\n",
390386
" training_data: \n",
391-
" type: uri_file\n",
387+
" type: uri_folder\n",
392388
" reg_rate:\n",
393389
" type: number\n",
394390
" default: 0.01\n",

‎typings/__builtins__.pyi

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
from databricks.sdk.runtime import *

0 commit comments

Comments
 (0)
Please sign in to comment.