Skip to content

Commit bd629ae

Browse files
committed
update samples from Release-166 as a part of SDK release
1 parent 41de75a commit bd629ae

File tree

5 files changed

+8
-11
lines changed

5 files changed

+8
-11
lines changed

how-to-use-azureml/automated-machine-learning/experimental/automl_thin_client_env.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ dependencies:
99
- PyJWT < 2.0.0
1010
- numpy==1.22.3
1111
- pywin32==227
12-
- cryptography<37.0.0
1312

1413
- pip:
1514
# Required packages for AzureML execution, history, and data preparation.

how-to-use-azureml/automated-machine-learning/experimental/automl_thin_client_env_mac.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ dependencies:
1111
- urllib3==1.26.7
1212
- PyJWT < 2.0.0
1313
- numpy>=1.21.6,<=1.22.3
14-
- cryptography<37.0.0
1514

1615
- pip:
1716
# Required packages for AzureML execution, history, and data preparation.

how-to-use-azureml/ml-frameworks/pytorch/train-hyperparameter-tune-deploy-with-pytorch/pytorch_train.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def download_data():
166166
from zipfile import ZipFile
167167
# download data
168168
data_file = './fowl_data.zip'
169-
download_url = 'https://azureopendatastorage.blob.core.windows.net/testpublic/temp/fowl_data.zip'
169+
download_url = 'https://azuremlexamples.blob.core.windows.net/datasets/fowl_data.zip'
170170
urllib.request.urlretrieve(download_url, filename=data_file)
171171

172172
# extract files

how-to-use-azureml/ml-frameworks/pytorch/train-hyperparameter-tune-deploy-with-pytorch/train-hyperparameter-tune-deploy-with-pytorch.ipynb

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
"metadata": {},
177177
"source": [
178178
"### Download training data\n",
179-
"The dataset we will use (located on a public blob [here](https://azureopendatastorage.blob.core.windows.net/testpublic/temp/fowl_data.zip) as a zip file) consists of about 120 training images each for turkeys and chickens, with 100 validation images for each class. The images are a subset of the [Open Images v5 Dataset](https://storage.googleapis.com/openimages/web/index.html). We will download and extract the dataset as part of our training script `pytorch_train.py`"
179+
"The dataset we will use (located on a public blob [here](https://azuremlexamples.blob.core.windows.net/datasets/fowl_data.zip) as a zip file) consists of about 120 training images each for turkeys and chickens, with 100 validation images for each class. The images are a subset of the [Open Images v5 Dataset](https://storage.googleapis.com/openimages/web/index.html). We will download and extract the dataset as part of our training script `pytorch_train.py`"
180180
]
181181
},
182182
{
@@ -260,15 +260,14 @@
260260
"\n",
261261
"channels:\n",
262262
"- conda-forge\n",
263+
"- pytorch\n",
263264
"dependencies:\n",
264-
"- python=3.6.2\n",
265+
"- python=3.8.12\n",
265266
"- pip=21.3.1\n",
267+
"- pytorch::pytorch==1.8.1\n",
268+
"- pytorch::torchvision==0.9.1\n",
266269
"- pip:\n",
267-
" - azureml-defaults==1.43.0\n",
268-
" - torch==1.6.0\n",
269-
" - torchvision==0.7.0\n",
270-
" - future==0.17.1\n",
271-
" - pillow"
270+
" - azureml-defaults"
272271
]
273272
},
274273
{

how-to-use-azureml/ml-frameworks/tensorflow/distributed-tensorflow-with-horovod/distributed-tensorflow-with-horovod.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
"source": [
161161
"from azureml.core import Dataset\n",
162162
"\n",
163-
"web_paths = ['https://azureopendatastorage.blob.core.windows.net/testpublic/text8.zip']\n",
163+
"web_paths = ['https://azuremlexamples.blob.core.windows.net/datasets/text8.zip']\n",
164164
"dataset = Dataset.File.from_files(path=web_paths)"
165165
]
166166
},

0 commit comments

Comments
 (0)