Skip to content

Commit 241da60

Browse files
author
Marc Gelormino
committed
Revert unintended changes.
1 parent 9aa7a28 commit 241da60

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

articles/machine-learning/how-to-use-parallel-run-step.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ mnist_blob = Datastore.register_azure_blob_container(ws,
6666

6767
Next, specify the workspace default datastore as the output datastore. You'll use it for inference output.
6868

69-
When you create your workspace, [Azure Files](https://docs.microsoft.com/azure/storage/files/storage-files-introduction) and [Blob storage](https://docs.microsoft.com/azure/storage/blobs/storage-blobs-introduction) are attached to the workspace by default. Azure Files is the default datastore for a workspace, but you can also use Blob storage as a datastore. For more information, see [Azure Storage options](https://docs.microsoft.com/azure/storage/common/storage-decide-blobs-files-disks).
69+
When you create your workspace, [Azure Files](https://docs.microsoft.com/azure/storage/files/storage-files-introduction) and [Blob storage](https://docs.microsoft.com/azure/storage/blobs/storage-blobs-introduction) are attached to the workspace by default. Azure Files is the default datastore for a workspace, but you can also use Blob storage as a datastore. For more information, see [Azure storage options](https://docs.microsoft.com/azure/storage/common/storage-decide-blobs-files-disks).
7070

7171
```python
7272
def_data_store = ws.get_default_datastore()
@@ -316,7 +316,8 @@ parallelrun_step = ParallelRunStep(
316316
models=[model],
317317
parallel_run_config=parallel_run_config,
318318
inputs=[named_mnist_ds],
319-
output=output_dir, arguments=[],
319+
output=output_dir,
320+
arguments=[],
320321
allow_reuse=True
321322
)
322323
```

0 commit comments

Comments
 (0)