Skip to content

Commit aeab6b3

Browse files
committed
update samples from Release-111 as a part of SDK release
1 parent 015e261 commit aeab6b3

File tree

32 files changed

+764
-42
lines changed

32 files changed

+764
-42
lines changed

configuration.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"source": [
104104
"import azureml.core\n",
105105
"\n",
106-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
106+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
107107
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
108108
]
109109
},

how-to-use-azureml/automated-machine-learning/automl_env.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ dependencies:
1818
- holidays==0.9.11
1919
- pytorch::pytorch=1.4.0
2020
- cudatoolkit=10.1.243
21+
- tornado==6.1.0
2122

2223
- pip:
2324
# Required packages for AzureML execution, history, and data preparation.
24-
- azureml-widgets~=1.33.0
25+
- azureml-widgets~=1.34.0
2526
- pytorch-transformers==1.0.0
2627
- spacy==2.1.8
2728
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
28-
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.33.0/validated_win32_requirements.txt [--no-deps]
29+
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.34.0/validated_win32_requirements.txt [--no-deps]
2930
- arch==4.14

how-to-use-azureml/automated-machine-learning/automl_env_linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ dependencies:
1818
- holidays==0.9.11
1919
- pytorch::pytorch=1.4.0
2020
- cudatoolkit=10.1.243
21+
- tornado==6.1.0
2122

2223
- pip:
2324
# Required packages for AzureML execution, history, and data preparation.
24-
- azureml-widgets~=1.33.0
25+
- azureml-widgets~=1.34.0
2526
- pytorch-transformers==1.0.0
2627
- spacy==2.1.8
2728
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
28-
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.33.0/validated_linux_requirements.txt [--no-deps]
29+
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.34.0/validated_linux_requirements.txt [--no-deps]
2930
- arch==4.14

how-to-use-azureml/automated-machine-learning/automl_env_mac.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ dependencies:
1919
- holidays==0.9.11
2020
- pytorch::pytorch=1.4.0
2121
- cudatoolkit=9.0
22+
- tornado==6.1.0
2223

2324
- pip:
2425
# Required packages for AzureML execution, history, and data preparation.
25-
- azureml-widgets~=1.33.0
26+
- azureml-widgets~=1.34.0
2627
- pytorch-transformers==1.0.0
2728
- spacy==2.1.8
2829
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
29-
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.33.0/validated_darwin_requirements.txt [--no-deps]
30+
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.34.0/validated_darwin_requirements.txt [--no-deps]
3031
- arch==4.14

how-to-use-azureml/automated-machine-learning/classification-bank-marketing-all-features/auto-ml-classification-bank-marketing-all-features.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
"metadata": {},
105105
"outputs": [],
106106
"source": [
107-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
107+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
108108
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
109109
]
110110
},

how-to-use-azureml/automated-machine-learning/classification-credit-card-fraud/auto-ml-classification-credit-card-fraud.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"metadata": {},
9494
"outputs": [],
9595
"source": [
96-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
96+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
9797
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
9898
]
9999
},
@@ -215,7 +215,7 @@
215215
"source": [
216216
"automl_settings = {\n",
217217
" \"n_cross_validations\": 3,\n",
218-
" \"primary_metric\": 'average_precision_score_weighted',\n",
218+
" \"primary_metric\": 'AUC_weighted',\n",
219219
" \"enable_early_stopping\": True,\n",
220220
" \"max_concurrent_iterations\": 2, # This is a limit for testing purpose, please increase it as per cluster size\n",
221221
" \"experiment_timeout_hours\": 0.25, # This is a time limit for testing purposes, remove it for real use cases, this will drastically limit ablity to find the best model possible\n",

how-to-use-azureml/automated-machine-learning/classification-text-dnn/auto-ml-classification-text-dnn.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"metadata": {},
9797
"outputs": [],
9898
"source": [
99-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
99+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
100100
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
101101
]
102102
},
@@ -284,7 +284,7 @@
284284
"source": [
285285
"automl_settings = {\n",
286286
" \"experiment_timeout_minutes\": 30,\n",
287-
" \"primary_metric\": 'accuracy',\n",
287+
" \"primary_metric\": 'AUC_weighted',\n",
288288
" \"max_concurrent_iterations\": num_nodes, \n",
289289
" \"max_cores_per_iteration\": -1,\n",
290290
" \"enable_dnn\": True,\n",

how-to-use-azureml/automated-machine-learning/continuous-retraining/auto-ml-continuous-retraining.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"metadata": {},
8282
"outputs": [],
8383
"source": [
84-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
84+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
8585
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
8686
]
8787
},
@@ -348,7 +348,7 @@
348348
" \"iteration_timeout_minutes\": 10,\n",
349349
" \"experiment_timeout_hours\": 0.25,\n",
350350
" \"n_cross_validations\": 3,\n",
351-
" \"primary_metric\": 'r2_score',\n",
351+
" \"primary_metric\": 'normalized_root_mean_squared_error',\n",
352352
" \"max_concurrent_iterations\": 3,\n",
353353
" \"max_cores_per_iteration\": -1,\n",
354354
" \"verbosity\": logging.INFO,\n",

how-to-use-azureml/automated-machine-learning/experimental/classification-credit-card-fraud-local-managed/auto-ml-classification-credit-card-fraud-local-managed.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"metadata": {},
9393
"outputs": [],
9494
"source": [
95-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
95+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
9696
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
9797
]
9898
},

how-to-use-azureml/automated-machine-learning/experimental/regression-model-proxy/auto-ml-regression-model-proxy.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"metadata": {},
9292
"outputs": [],
9393
"source": [
94-
"print(\"This notebook was created using version 1.33.0 of the Azure ML SDK\")\n",
94+
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
9595
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
9696
]
9797
},

0 commit comments

Comments
 (0)