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

This commit is contained in:
amlrelsa-ms
2020-09-29 06:48:31 +00:00
parent 0a2408300a
commit 4e4bf48013
105 changed files with 848 additions and 2538 deletions

View File

@@ -271,7 +271,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Configure Estimator for training\n",
"### Configure training job\n",
"\n",
"You can ask the system to build a conda environment based on your dependency specification. Once the environment is built, and if you don't change your dependencies, it will be reused in subsequent runs."
]
@@ -296,14 +296,13 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"An estimator object is used to submit the run. Azure Machine Learning has pre-configured estimators for common machine learning frameworks, as well as generic Estimator. Create a generic estimator for by specifying\n",
"A ScriptRunConfig object is used to submit the run. Create a ScriptRunConfig by specifying\n",
"\n",
"* The name of the estimator object, `est`\n",
"* The directory that contains your scripts. All the files in this directory are uploaded into the cluster nodes for execution. \n",
"* The training script name, train.py\n",
"* The input dataset for training\n",
"* The compute target. In this case you will use the AmlCompute you created\n",
"* The environment definition for the experiment"
"* The environment for the experiment"
]
},
{
@@ -312,13 +311,13 @@
"metadata": {},
"outputs": [],
"source": [
"from azureml.train.estimator import Estimator\n",
"from azureml.core import ScriptRunConfig\n",
"\n",
"est = Estimator(source_directory=script_folder, \n",
" entry_script='train.py',\n",
" inputs=[crack_labels.as_named_input('crack_labels')],\n",
" compute_target=compute_target,\n",
" environment_definition= conda_env)"
"src = ScriptRunConfig(source_directory=script_folder,\n",
" script='train.py',\n",
" arguments=[crack_labels.as_named_input('crack_labels')],\n",
" compute_target=compute_target,\n",
" enviroment=conda_env)"
]
},
{
@@ -327,7 +326,7 @@
"source": [
"### Submit job to run\n",
"\n",
"Submit the estimator to the Azure ML experiment to kick off the execution."
"Submit the ScriptRunConfig to the Azure ML experiment to kick off the execution."
]
},
{
@@ -336,7 +335,7 @@
"metadata": {},
"outputs": [],
"source": [
"run = exp.submit(est)"
"run = exp.submit(src)"
]
},
{