mirror of
https://github.com/Azure/MachineLearningNotebooks.git
synced 2025-12-22 18:42:41 -05:00
update samples from Release-62 as a part of 1.21.0 SDK stable release
This commit is contained in:
@@ -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)"
|
||||
|
||||
@@ -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}})"
|
||||
]
|
||||
},
|
||||
|
||||
@@ -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)"
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user