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

This commit is contained in:
amlrelsa-ms
2021-03-24 16:45:36 +00:00
parent 54a065c698
commit 8b32e8d5ad
46 changed files with 2981 additions and 1505 deletions

View File

@@ -337,7 +337,7 @@
" error_threshold=1,\n",
" compute_target=compute_target,\n",
" process_count_per_node=2,\n",
" node_count=1\n",
" node_count=2\n",
")"
]
},
@@ -367,10 +367,11 @@
"source": [
"from azureml.pipeline.steps import ParallelRunStep\n",
"from datetime import datetime\n",
"import uuid\n",
"\n",
"parallel_step_name = \"batchscoring-\" + datetime.now().strftime(\"%Y%m%d%H%M\")\n",
"\n",
"label_config = label_ds.as_named_input(\"labels_input\")\n",
"label_config = label_ds.as_named_input(\"labels_input\").as_mount(\"/tmp/{}\".format(str(uuid.uuid4())))\n",
"\n",
"batch_score_step = ParallelRunStep(\n",
" name=parallel_step_name,\n",