Skip to content

Commit c7e1241

Browse files
authored
Merge pull request Azure#1612 from Azure/release_update/Release-115
Update samples from Release-115 as a part of SDK release
2 parents e2dddfd + 6529298 commit c7e1241

File tree

57 files changed

+28923
-192
lines changed

Some content is hidden

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

57 files changed

+28923
-192
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.34.0 of the Azure ML SDK\")\n",
106+
"print(\"This notebook was created using version 1.35.0 of the Azure ML SDK\")\n",
107107
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
108108
]
109109
},

contrib/fairness/fairlearn-azureml-mitigation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ dependencies:
66
- fairlearn>=0.6.2
77
- joblib
88
- liac-arff
9-
- raiwidgets~=0.7.0
9+
- raiwidgets~=0.11.0

contrib/fairness/upload-fairness-dashboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ dependencies:
66
- fairlearn>=0.6.2
77
- joblib
88
- liac-arff
9-
- raiwidgets~=0.7.0
9+
- raiwidgets~=0.11.0

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ dependencies:
2222

2323
- pip:
2424
# Required packages for AzureML execution, history, and data preparation.
25-
- azureml-widgets~=1.34.0
25+
- azureml-widgets~=1.35.0
2626
- pytorch-transformers==1.0.0
2727
- spacy==2.1.8
2828
- 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.34.0/validated_win32_requirements.txt [--no-deps]
29+
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.35.0/validated_win32_requirements.txt [--no-deps]
3030
- arch==4.14

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ dependencies:
2222

2323
- pip:
2424
# Required packages for AzureML execution, history, and data preparation.
25-
- azureml-widgets~=1.34.0
25+
- azureml-widgets~=1.35.0
2626
- pytorch-transformers==1.0.0
2727
- spacy==2.1.8
2828
- 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.34.0/validated_linux_requirements.txt [--no-deps]
29+
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.35.0/validated_linux_requirements.txt [--no-deps]
3030
- arch==4.14

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ dependencies:
2323

2424
- pip:
2525
# Required packages for AzureML execution, history, and data preparation.
26-
- azureml-widgets~=1.34.0
26+
- azureml-widgets~=1.35.0
2727
- pytorch-transformers==1.0.0
2828
- spacy==2.1.8
2929
- https://aka.ms/automl-resources/packages/en_core_web_sm-2.1.0.tar.gz
30-
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.34.0/validated_darwin_requirements.txt [--no-deps]
30+
- -r https://automlresources-prod.azureedge.net/validated-requirements/1.35.0/validated_darwin_requirements.txt [--no-deps]
3131
- arch==4.14

how-to-use-azureml/automated-machine-learning/check_conda_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
try:
55
import conda
6-
except:
6+
except Exception:
77
print('Failed to import conda.')
88
print('This setup is usually run from the base conda environment.')
99
print('You can activate the base environment using the command "conda activate base"')

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

Lines changed: 2 additions & 2 deletions
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.34.0 of the Azure ML SDK\")\n",
107+
"print(\"This notebook was created using version 1.35.0 of the Azure ML SDK\")\n",
108108
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
109109
]
110110
},
@@ -703,7 +703,7 @@
703703
"from azureml.core.webservice import AciWebservice\n",
704704
"from azureml.core.model import Model\n",
705705
"\n",
706-
"inference_config = InferenceConfig(entry_script=script_file_name)\n",
706+
"inference_config = InferenceConfig(environment = best_run.get_environment(), entry_script=script_file_name)\n",
707707
"\n",
708708
"aciconfig = AciWebservice.deploy_configuration(cpu_cores = 2, \n",
709709
" memory_gb = 2, \n",

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.34.0 of the Azure ML SDK\")\n",
96+
"print(\"This notebook was created using version 1.35.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
@@ -96,7 +96,7 @@
9696
"metadata": {},
9797
"outputs": [],
9898
"source": [
99-
"print(\"This notebook was created using version 1.34.0 of the Azure ML SDK\")\n",
99+
"print(\"This notebook was created using version 1.35.0 of the Azure ML SDK\")\n",
100100
"print(\"You are currently using version\", azureml.core.VERSION, \"of the Azure ML SDK\")"
101101
]
102102
},

0 commit comments

Comments
 (0)