update samples from Release-60 as a part of SDK release

This commit is contained in:
amlrelsa-ms
2020-08-04 06:12:06 +00:00
parent 0ab8b141ee
commit 5b684070e1
62 changed files with 278 additions and 16066 deletions

View File

@@ -230,7 +230,7 @@
"source": [
"# set up the compute environment to install required packages\n",
"conda = CondaDependencies.create(\n",
" pip_packages=['azureml-sdk','azureml-dataprep[fuse,pandas]'],\n",
" pip_packages=['azureml-sdk','azureml-dataset-runtime[fuse,pandas]'],\n",
" pin_sdk_version=False)\n",
"\n",
"conda.set_pip_option('--pre')\n",
@@ -302,8 +302,8 @@
"source": [
"# set up training step with Tensorflow estimator\n",
"est = TensorFlow(entry_script='train.py',\n",
" source_directory=script_folder, \n",
" pip_packages = ['azureml-sdk','keras','numpy','scikit-learn', 'matplotlib'],\n",
" source_directory=script_folder,\n",
" pip_packages = ['azureml-sdk', 'keras<=2.3.1', 'tensorflow==2.1.0', 'numpy','scikit-learn', 'matplotlib'],\n",
" compute_target=compute_target)\n",
"\n",
"est_step = EstimatorStep(name='train step',\n",