update samples from Release-62 as a part of 1.21.0 SDK stable release

This commit is contained in:
amlrelsa-ms
2021-01-25 18:00:48 +00:00
parent cda1f3e4cf
commit fff4005a01
22 changed files with 36 additions and 30 deletions

View File

@@ -117,7 +117,7 @@
},
"outputs": [],
"source": [
"experiment_name = 'sklearn-mnist'\n",
"experiment_name = 'Tutorial-sklearn-mnist'\n",
"\n",
"from azureml.core import Experiment\n",
"exp = Experiment(workspace=ws, name=experiment_name)"

View File

@@ -414,7 +414,7 @@
"from azureml.pipeline.core import Pipeline\n",
"\n",
"pipeline = Pipeline(workspace=ws, steps=[batch_score_step])\n",
"pipeline_run = Experiment(ws, \"batch_scoring\").submit(pipeline)"
"pipeline_run = Experiment(ws, \"Tutorial-Batch-Scoring\").submit(pipeline)"
]
},
{
@@ -544,7 +544,7 @@
"rest_endpoint = published_pipeline.endpoint\n",
"response = requests.post(rest_endpoint, \n",
" headers=auth_header, \n",
" json={\"ExperimentName\": \"batch_scoring\",\n",
" json={\"ExperimentName\": \"Tutorial-Batch-Scoring\",\n",
" \"ParameterAssignments\": {\"process_count_per_node\": 6}})"
]
},

View File

@@ -386,7 +386,7 @@
"outputs": [],
"source": [
"from azureml.core.experiment import Experiment\n",
"experiment = Experiment(ws, \"taxi-experiment\")\n",
"experiment = Experiment(ws, \"Tutorial-NYCTaxi\")\n",
"local_run = experiment.submit(automl_config, show_output=True)"
]
},