Skip to content

Commit 3da1fe8

Browse files
authored
Merge pull request #18690 from nschonni/typo-parameters
typo: paramters -> parameters
2 parents f6ffcc2 + a73a34b commit 3da1fe8

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

articles/batch-ai/use-azure-storage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ If your training script requires knowledge of a path, you should pass it as a co
9494

9595
### Abbreviate input paths
9696

97-
To abbreviate input paths as an environment variable, use the `inputDirectories` property of your `job.json` file (or `models.JobCreateParamters.input_directories` if using the Batch AI SDK). The schema of `inputDirectories` is:
97+
To abbreviate input paths as an environment variable, use the `inputDirectories` property of your `job.json` file (or `models.JobCreateParameters.input_directories` if using the Batch AI SDK). The schema of `inputDirectories` is:
9898

9999
```json
100100
{
@@ -111,7 +111,7 @@ For more information, see [here](https://github.com/Azure/BatchAI/blob/master/do
111111

112112
### Abbreviate output paths
113113

114-
To abbreviate output paths as an environment variable, use the `outputDirectories` property of your `job.json` file (or `models.JobCreateParamters.output_directories` if using the Batch AI SDK). Using this method can simplify the paths for output files. The schema of `outputDirectories` is:
114+
To abbreviate output paths as an environment variable, use the `outputDirectories` property of your `job.json` file (or `models.JobCreateParameters.output_directories` if using the Batch AI SDK). Using this method can simplify the paths for output files. The schema of `outputDirectories` is:
115115

116116
```json
117117
{

articles/machine-learning/desktop-workbench/how-to-build-deploy-image-classification-models.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -547,12 +547,12 @@ print("Image source:",image_path_or_url)
547547
serialized_result_in_json = deploy_obj.score_image(image_path_or_url)
548548
print("serialized_result_in_json:", serialized_result_in_json)
549549

550-
# Score image url with added paramters. Add softmax to score.
551-
print("Score image url with added paramters. Add softmax to score")
552-
from cvtk.utils.constants import ClassificationRESTApiParamters
550+
# Score image url with added parameters. Add softmax to score.
551+
print("Score image url with added parameters. Add softmax to score")
552+
from cvtk.utils.constants import ClassificationRESTApiParameters
553553
image_path_or_url = "https://cvtkdata.blob.core.windows.net/publicimages/microsoft_logo.jpg"
554554
print("Image source:",image_path_or_url)
555-
serialized_result_in_json = deploy_obj.score_image(image_path_or_url, image_resize_dims=[224,224], parameters={ClassificationRESTApiParamters.ADD_SOFTMAX:True})
555+
serialized_result_in_json = deploy_obj.score_image(image_path_or_url, image_resize_dims=[224,224], parameters={ClassificationRESTApiParameters.ADD_SOFTMAX:True})
556556
print("serialized_result_in_json:", serialized_result_in_json)
557557
```
558558

@@ -605,7 +605,7 @@ def score_image_list_with_http(images, service_endpoint_url, service_key=None, p
605605
images(list): list of (input image file path, base64 image string, url or buffer)
606606
service_endpoint_url(str): endpoint url
607607
service_key(str): service key, None for local deployment.
608-
parameters(dict): service additional paramters in dictionary
608+
parameters(dict): service additional parameters in dictionary
609609
610610
611611
Returns:

articles/machine-learning/desktop-workbench/how-to-build-deploy-object-detection-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def score_image_with_http(image, service_endpoint_url, service_key=None, paramet
530530
image (str): Image file path
531531
service_endpoint_url(str): web service endpoint url
532532
service_key(str): Service key. None for local deployment.
533-
parameters (dict): Additional request paramters in dictionary. Default is {}.
533+
parameters (dict): Additional request parameters in dictionary. Default is {}.
534534
535535
536536
Returns:

articles/service-fabric/service-fabric-cluster-security-update-certs-azure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: Manage certificates in an Azure Service Fabric cluster | Microsoft Docs
33
description: Describes how to add new certificates, rollover certificate, and remove certificate to or from a Service Fabric cluster.
44
services: service-fabric
@@ -171,7 +171,7 @@ For ease of following along, sample 5-VM-1-NodeTypes-Secure_Step2.JSON contains
171171
>
172172

173173
### Edit your template file to reflect the new parameters you added above
174-
If you are using the sample from the [git-repo](https://github.com/ChackDan/Service-Fabric/tree/master/ARM%20Templates/Cert%20Rollover%20Sample) to follow along, you can start to make changes in The sample 5-VM-1-NodeTypes-Secure.paramters_Step2.JSON
174+
If you are using the sample from the [git-repo](https://github.com/ChackDan/Service-Fabric/tree/master/ARM%20Templates/Cert%20Rollover%20Sample) to follow along, you can start to make changes in The sample 5-VM-1-NodeTypes-Secure.parameters_Step2.JSON
175175

176176
Edit your Resource Manager Template parameter File, add the two new parameters for secCertificateThumbprint and secCertificateUrlValue.
177177

0 commit comments

Comments
 (0)