Skip to content

Commit ba9c4c5

Browse files
authored
Merge pull request Azure#1225 from Azure/release_update/Release-75
update samples from Release-75 as a part of SDK release
2 parents 95072ea + a6c65f0 commit ba9c4c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Azure Machine Learning service example notebooks
22

3-
> a community-driven repository of examples using mlflow for tracking can be found at https://github.com/Azure/azureml-examples
4-
53
This repository contains example notebooks demonstrating the [Azure Machine Learning](https://azure.microsoft.com/en-us/services/machine-learning-service/) Python SDK which allows you to build, train, deploy and manage machine learning solutions using Azure. The AML SDK allows you the choice of using local or cloud compute resources, while managing and maintaining the complete data science workflow from the cloud.
64

75
![Azure ML Workflow](https://raw.githubusercontent.com/MicrosoftDocs/azure-docs/master/articles/machine-learning/media/concept-azure-machine-learning-architecture/workflow.png)

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,8 @@
429429
"dependencies:\n",
430430
"- python=3.6.2\n",
431431
"- pip:\n",
432-
" - azureml-defaults==1.13.0\n",
432+
" - h5py<=2.10.0\n",
433+
" - azureml-defaults\n",
433434
" - tensorflow-gpu==2.0.0\n",
434435
" - keras<=2.3.1\n",
435436
" - matplotlib"
@@ -981,6 +982,7 @@
981982
"\n",
982983
"cd = CondaDependencies.create()\n",
983984
"cd.add_tensorflow_conda_package()\n",
985+
"cd.add_conda_package('h5py<=2.10.0')\n",
984986
"cd.add_conda_package('keras<=2.3.1')\n",
985987
"cd.add_pip_package(\"azureml-defaults\")\n",
986988
"cd.save_to_file(base_directory='./', conda_file_path='myenv.yml')\n",

0 commit comments

Comments
 (0)