Skip to content

Commit 8e2032f

Browse files
authored
Merge pull request Azure#1153 from Azure/release_update/Release-66
update samples from Release-66 as a part of SDK release
2 parents bb1c7db + 824d844 commit 8e2032f

File tree

92 files changed

+10899
-3310
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+10899
-3310
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.13.0 of the Azure ML SDK\")\n",
106+
"print(\"This notebook was created using version 1.14.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ dependencies:
2424
- pytorch-transformers==1.0.0
2525
- spacy==2.1.8
2626
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
27-
- -r https://automlcesdkdataresources.blob.core.windows.net/validated-requirements/1.13.0/validated_win32_requirements.txt [--no-deps]
27+
- -r https://automlcesdkdataresources.blob.core.windows.net/validated-requirements/1.14.0/validated_win32_requirements.txt [--no-deps]
2828

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ dependencies:
2424
- pytorch-transformers==1.0.0
2525
- spacy==2.1.8
2626
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
27-
- -r https://automlcesdkdataresources.blob.core.windows.net/validated-requirements/1.13.0/validated_linux_requirements.txt [--no-deps]
27+
- -r https://automlcesdkdataresources.blob.core.windows.net/validated-requirements/1.14.0/validated_linux_requirements.txt [--no-deps]
2828

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ dependencies:
2525
- pytorch-transformers==1.0.0
2626
- spacy==2.1.8
2727
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
28-
- -r https://automlcesdkdataresources.blob.core.windows.net/validated-requirements/1.13.0/validated_darwin_requirements.txt [--no-deps]
28+
- -r https://automlcesdkdataresources.blob.core.windows.net/validated-requirements/1.14.0/validated_darwin_requirements.txt [--no-deps]

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
"metadata": {},
106106
"outputs": [],
107107
"source": [
108-
"print(\"This notebook was created using version 1.13.0 of the Azure ML SDK\")\n",
108+
"print(\"This notebook was created using version 1.14.0 of the Azure ML SDK\")\n",
109109
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
110110
]
111111
},
@@ -500,11 +500,10 @@
500500
"source": [
501501
"# Wait for the best model explanation run to complete\n",
502502
"from azureml.core.run import Run\n",
503-
"model_explainability_run_id = remote_run.get_properties().get('ModelExplainRunId')\n",
503+
"model_explainability_run_id = remote_run.id + \"_\" + \"ModelExplain\"\n",
504504
"print(model_explainability_run_id)\n",
505-
"if model_explainability_run_id is not None:\n",
506-
" model_explainability_run = Run(experiment=experiment, run_id=model_explainability_run_id)\n",
507-
" model_explainability_run.wait_for_completion()\n",
505+
"model_explainability_run = Run(experiment=experiment, run_id=model_explainability_run_id)\n",
506+
"model_explainability_run.wait_for_completion()\n",
508507
"\n",
509508
"# Get the best run object\n",
510509
"best_run, fitted_model = remote_run.get_output()"

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

Lines changed: 1 addition & 1 deletion
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.13.0 of the Azure ML SDK\")\n",
96+
"print(\"This notebook was created using version 1.14.0 of the Azure ML SDK\")\n",
9797
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
9898
]
9999
},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"metadata": {},
9898
"outputs": [],
9999
"source": [
100-
"print(\"This notebook was created using version 1.13.0 of the Azure ML SDK\")\n",
100+
"print(\"This notebook was created using version 1.14.0 of the Azure ML SDK\")\n",
101101
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
102102
]
103103
},

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"metadata": {},
8989
"outputs": [],
9090
"source": [
91-
"print(\"This notebook was created using version 1.13.0 of the Azure ML SDK\")\n",
91+
"print(\"This notebook was created using version 1.14.0 of the Azure ML SDK\")\n",
9292
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
9393
]
9494
},

how-to-use-azureml/automated-machine-learning/experimental/regression/auto-ml-regression-model-proxy.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.13.0 of the Azure ML SDK\")\n",
95+
"print(\"This notebook was created using version 1.14.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/forecasting-beer-remote/auto-ml-forecasting-beer-remote.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"metadata": {},
115115
"outputs": [],
116116
"source": [
117-
"print(\"This notebook was created using version 1.13.0 of the Azure ML SDK\")\n",
117+
"print(\"This notebook was created using version 1.14.0 of the Azure ML SDK\")\n",
118118
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
119119
]
120120
},

0 commit comments

Comments
 (0)