Skip to content

Commit 065531e

Browse files
committed
fix format
1 parent c02db2b commit 065531e

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

articles/ai-services/openai/how-to/fine-tuning-deploy.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ The **Deploy model** dialog box opens. In the dialog box, enter your **Deploymen
3232
You can monitor the progress of your deployment on the **Deployments** pane in Azure AI Foundry portal.
3333

3434
The UI does not support corss region deployment, while Python SDK or REST supports.
35+
---
3536

3637
## [Python](#tab/python)
3738

@@ -190,6 +191,7 @@ response = requests.put(url, headers=headers, json=payload)
190191
print(f"Status Code: {response.status_code}")
191192
print(f"Response: {response.json()}")
192193
```
194+
---
193195

194196
## [REST](#tab/rest)
195197

@@ -297,7 +299,7 @@ az cognitiveservices account deployment create
297299
--sku-capacity "1"
298300
--sku-name "Standard"
299301
```
300-
302+
---
301303

302304
[!INCLUDE [Fine-tuning deletion](../includes/fine-tune.md)]
303305

@@ -309,6 +311,8 @@ After your custom model deploys, you can use it like any other deployed model. Y
309311

310312
:::image type="content" source="../media/quickstarts/playground-load-new.png" alt-text="Screenshot of the Playground pane in Azure AI Foundry portal, with sections highlighted." lightbox="../media/quickstarts/playground-load-new.png":::
311313

314+
---
315+
312316
## [Python](#tab/python)
313317

314318
```python
@@ -333,7 +337,7 @@ response = client.chat.completions.create(
333337

334338
print(response.choices[0].message.content)
335339
```
336-
340+
---
337341

338342
## [REST](#tab/rest)
339343

@@ -343,6 +347,7 @@ curl $AZURE_OPENAI_ENDPOINT/openai/deployments/<deployment_name>/chat/completion
343347
-H "api-key: $AZURE_OPENAI_API_KEY" \
344348
-d '{"messages":[{"role": "system", "content": "You are a helpful assistant."},{"role": "user", "content": "Does Azure OpenAI support customer managed keys?"},{"role": "assistant", "content": "Yes, customer managed keys are supported by Azure OpenAI."},{"role": "user", "content": "Do other Azure AI services support this too?"}]}'
345349
```
350+
---
346351

347352
### Prompt caching
348353

articles/ai-services/openai/includes/fine-tuning-studio.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Take a moment to review the fine-tuning workflow for using Azure AI Foundry port
4343

4444
1. Prepare your training and validation data.
4545
1. Use the **Create custom model** wizard in Azure AI Foundry portal to train your custom model.
46-
1. [Select a base model](#select-the-base-model).
46+
1. Select a base mode.
4747
1. [Choose your training data](#choose-your-training-data).
4848
1. Optionally, [choose your validation data](#choose-your-validation-data).
4949
1. Optionally, [configure task parameters](#configure-task-parameters) for your fine-tuning job.
@@ -125,9 +125,9 @@ The next step is to either choose existing prepared training data or upload new
125125

126126
- To upload new training data, use one of the following options:
127127

128-
- Select **Local file** to [upload training data from a local file](#upload-training-data-from-local-file).
128+
- Select **Local file** to upload training data from a local file.
129129

130-
- Select **Azure blob or other shared web locations** to [import training data from Azure Blob or another shared web location](#import-training-data-from-azure-blob-store).
130+
- Select **Azure blob or other shared web locations** to import training data from Azure Blob or another shared web location.
131131

132132
For large data files, we recommend that you import from an Azure Blob store. Large files can become unstable when uploaded through multipart forms because the requests are atomic and can't be retried or resumed. For more information about Azure Blob Storage, see [What is Azure Blob Storage](/azure/storage/blobs/storage-blobs-overview)?
133133

@@ -148,9 +148,9 @@ The **Validation data** pane displays any existing, previously uploaded training
148148

149149
- To upload new validation data, use one of the following options:
150150

151-
- Select **Local file** to [upload validation data from a local file](#upload-validation-data-from-local-file).
151+
- Select **Local file** to upload validation data from a local file.
152152

153-
- Select **Azure blob or other shared web locations** to [import validation data from Azure Blob or another shared web location](#import-validation-data-from-azure-blob-store).
153+
- Select **Azure blob or other shared web locations** to import validation data from Azure Blob or another shared web location.
154154

155155
For large data files, we recommend that you import from an Azure Blob store. Large files can become unstable when uploaded through multipart forms because the requests are atomic and can't be retried or resumed.
156156

0 commit comments

Comments
 (0)