Skip to content

Commit ed5c96b

Browse files
committed
Fix typos
1 parent d1c7f7f commit ed5c96b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/sagemaker/notebooks/sagemaker-sdk/fine-tune-embedding-models/sagemaker-notebook.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"3. [Fine-tune Embedding model on Amazon SageMaker](#3-fine-tune-embedding-model-on-amazon-sagemaker)\n",
1717
"4. [Deploy & Test fine-tuned Embedding Model on Amazon SageMaker](#4-deploy--test-fine-tuned-embedding-model-on-amazon-sagemaker)\n",
1818
"\n",
19-
"**What is new with Sentence Transforemrs 3?**\n",
19+
"**What is new with Sentence Transformers 3?**\n",
2020
"\n",
2121
"Sentence Transformers v3 introduces a new trainer that makes it easier to fine-tune and train embedding models. This update includes enhanced components like diverse datasets, updated loss functions, and a streamlined training process, improving the efficiency and flexibility of model development.\n",
2222
"\n",

docs/sagemaker/source/reference/inference-toolkit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ See the following request examples for some of the tasks:
3232

3333
```json
3434
{
35-
"inputs": "This sound track was beautiful! It paints the senery in your mind so well I would recomend it
35+
"inputs": "This sound track was beautiful! It paints the senery in your mind so well I would recommend it
3636
even to people who hate vid. game music!"
3737
}
3838
```

docs/sagemaker/source/tutorials/sagemaker-sdk/deploy-sagemaker-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ predictor = hf_estimator.deploy(initial_instance_count=1, instance_type="ml.m5.x
9595

9696
# example request: you always need to define "inputs"
9797
data = {
98-
"inputs": "Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days."
98+
"inputs": "Camera - You are awarded a SiPix Digital Camera! call 09061221066 from landline. Delivery within 28 days."
9999
}
100100

101101
# request
@@ -133,7 +133,7 @@ predictor = huggingface_model.deploy(
133133

134134
# example request: you always need to define "inputs"
135135
data = {
136-
"inputs": "Camera - You are awarded a SiPix Digital Camera! call 09061221066 fromm landline. Delivery within 28 days."
136+
"inputs": "Camera - You are awarded a SiPix Digital Camera! call 09061221066 from landline. Delivery within 28 days."
137137
}
138138

139139
# request

docs/sagemaker/source/tutorials/sagemaker-sdk/sagemaker-sdk-quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ huggingface_estimator = HuggingFace(
106106
source_dir="./scripts", # directory where fine-tuning script is stored
107107
instance_type="ml.p3.2xlarge", # instance type
108108
instance_count=1, # number of instances
109-
role=role, # IAM role used in training job to acccess AWS resources (S3)
109+
role=role, # IAM role used in training job to access AWS resources (S3)
110110
transformers_version="4.36", # Transformers version
111111
pytorch_version="2.1.0", # PyTorch version
112112
py_version="py310", # Python version

0 commit comments

Comments
 (0)