Skip to content

Commit 7cbffa4

Browse files
authored
Apply suggestions from code review
1 parent eefd025 commit 7cbffa4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/ai-foundry/how-to/fine-tune-serverless.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,11 @@ You can delete a fine-tuned model from the fine-tuning model list in [Azure AI F
281281

282282
::: zone pivot="programming-language-python"
283283

284-
### Create AzureML Workspace connection
284+
### Create a client to consume the model
285285

286286
The following sections walk you through how to fine-tune a model in python. To find a notebook example of this code, please see [FineTuning LLM with Model-As-Service](https://github.com/Azure/azureml-examples/blob/main/sdk/python/jobs/finetuning/standalone/model-as-a-service/chat-completion/chat_completion_with_model_as_service.ipynb)
287287

288-
First, ensure to install dependencies to start fine-tuning your model.
288+
1. Ensure to install dependencies to start fine-tuning your model.
289289

290290
```python
291291
%pip install azure-ai-ml
@@ -295,7 +295,7 @@ First, ensure to install dependencies to start fine-tuning your model.
295295
%pip install azureml-mlflow
296296
```
297297

298-
Then, create the client to consume the model. The following code uses an endpoint URL and key that are stored in environment variables.
298+
2. Create the client to consume the model. The following code uses an endpoint URL and key that are stored in environment variables.
299299

300300
```python
301301
from azure.ai.ml import MLClient

0 commit comments

Comments
 (0)