Skip to content

Commit 7544297

Browse files
authored
Merge pull request #4788 from MicrosoftDocs/main
5/12/2025 AM Publish
2 parents 02d5bad + 9bbf7d1 commit 7544297

File tree

5 files changed

+29
-81
lines changed

5 files changed

+29
-81
lines changed

articles/ai-services/content-moderator/includes/tool-deprecation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: pafarley
1212

1313

1414
> [!IMPORTANT]
15-
> Azure Content Moderator is deprecated as of February 2024 and will be retired by February 2027. It is replaced by [Azure AI Content Safety](/azure/ai-services/content-safety/overview), which offers advanced AI features and enhanced performance.
15+
> Azure Content Moderator is deprecated as of February 2024 and will be retired on March 15, 2027. It is replaced by [Azure AI Content Safety](/azure/ai-services/content-safety/overview), which offers advanced AI features and enhanced performance.
1616
>
1717
> Azure AI Content Safety is a comprehensive solution designed to detect harmful user-generated and AI-generated content in applications and services. Azure AI Content Safety is suitable for many scenarios such as online marketplaces, gaming companies, social messaging platforms, enterprise media companies, and K-12 education solution providers. Here's an overview of its features and capabilities:
1818
>

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

Lines changed: 7 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,9 @@ Azure OpenAI fine-tuning supports the following deployment types.
366366
|GPT-35-Turbo-1106-finetune|East US2, North Central US, Sweden Central, Switzerland West|
367367
|GPT-35-Turbo-0125-finetune|East US2, North Central US, Sweden Central, Switzerland West|
368368

369-
### Global Standard (preview)
369+
### Global Standard
370+
371+
[Global standard](./deployment-types.md#global-standard) fine-tuned deployments offer [cost savings](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/), but custom model weights may temporarily be stored outside the geography of your Azure OpenAI resource.
370372

371373
| Models | Region |
372374
|--|--|
@@ -375,72 +377,16 @@ Azure OpenAI fine-tuning supports the following deployment types.
375377
|GPT-4o-finetune|East US2, North Central US, and Sweden Central|
376378
|GPT-4o-mini-finetune|East US2, North Central US, and Sweden Central|
377379

378-
[Global standard](./deployment-types.md#global-standard) fine-tuned deployments offer [cost savings](https://azure.microsoft.com/pricing/details/cognitive-services/openai-service/), but custom model weights may temporarily be stored outside the geography of your Azure OpenAI resource.
379-
380380
:::image type="content" source="../media/fine-tuning/global-standard.png" alt-text="Screenshot of the global standard deployment user experience with a fine-tuned model." lightbox="../media/fine-tuning/global-standard.png":::
381381

382-
### Provisioned Managed (preview)
382+
### Provisioned Managed
383383

384384
| Models | Region |
385385
|--|--|
386-
|GPT-4o-finetune|North Central US, Switzerland West|
387-
|GPT-4o-mini-finetune|North Central US, Switzerland West|
388-
389-
- `gpt-4o-mini-2024-07-18`
390-
- `gpt-4o-2024-08-06`
391-
392-
[Provisioned managed](./deployment-types.md#provisioned) fine-tuned deployments offer [predictable performance](../concepts/provisioned-throughput.md) for fine-tuned deployments. As part of public preview, provisioned managed deployments may be created regionally via the data-plane [REST API](../reference.md#data-plane-inference) version `2024-10-01` or newer. See below for examples.
393-
394-
#### Creating a Provisioned Managed deployment
395-
396-
To create a new deployment, make an HTTP PUT call via the [Deployments - Create or Update REST API](/rest/api/aiservices/accountmanagement/deployments/create-or-update?view=rest-aiservices-accountmanagement-2024-10-01&tabs=HTTP&preserve-view=true). The approach is similar to performing [cross region deployment](#cross-region-deployment) with the following exceptions:
397-
398-
- You must provide a `sku` name of `ProvisionedManaged`.
399-
- The capacity must be declared in PTUs.
400-
- The `api-version` must be `2024-10-01` or newer.
401-
- The HTTP method should be `PUT`.
402-
403-
For example, to deploy a gpt-4o-mini model:
404-
405-
```bash
406-
curl -X PUT "https://management.azure.com/subscriptions/<SUBSCRIPTION>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.CognitiveServices/accounts/<RESOURCE_NAME>/deployments/<MODEL_DEPLOYMENT_NAME>api-version=2024-10-01" \
407-
-H "Authorization: Bearer <TOKEN>" \
408-
-H "Content-Type: application/json" \
409-
-d '{
410-
"sku": {"name": "ProvisionedManaged", "capacity": 25},
411-
"properties": {
412-
"model": {
413-
"format": "OpenAI",
414-
"name": "gpt-4omini-ft-model-name",
415-
"version": "1",
416-
"source": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/{SourceResourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{SourceAOAIAccountName}"
417-
}
418-
}
419-
}'
420-
```
421-
422-
#### Scaling a fine-tuned model on Provisioned Managed
386+
|GPT-4o-finetune|North Central US, Sweden Central|
387+
|GPT-4o-mini-finetune|North Central US, Sweden Central|
423388

424-
To scale a fine-tuned provision managed deployment to increase or decrease PTU capacity, perform the same `PUT` REST API call as you did when [creating the deployment](#creating-a-provisioned-managed-deployment) and provide an updated `capacity` value for the `sku`. Keep in mind, provisioned deployments must scale in [minimum increments](../how-to/provisioned-throughput-onboarding.md#how-much-throughput-per-ptu-you-get-for-each-model).
425-
426-
For example, to scale the model deployed in the previous section from 25 to 40 PTU, make another `PUT` call and increase the capacity:
427-
428-
```bash
429-
curl -X PUT "https://management.azure.com/subscriptions/<SUBSCRIPTION>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.CognitiveServices/accounts/<RESOURCE_NAME>/deployments/<MODEL_DEPLOYMENT_NAME>api-version=2024-10-01" \
430-
-H "Authorization: Bearer <TOKEN>" \
431-
-H "Content-Type: application/json" \
432-
-d '{
433-
"sku": {"name": "ProvisionedManaged", "capacity": 40},
434-
"properties": {
435-
"model": {
436-
"format": "OpenAI",
437-
"name": "gpt-4omini-ft-model-name",
438-
"version": "1",
439-
"source": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/{SourceResourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{SourceAOAIAccountName}"
440-
}
441-
}
442-
}'
443-
```
389+
[Provisioned managed](./deployment-types.md#provisioned) fine-tuned deployments offer [predictable performance](../concepts/provisioned-throughput.md) for latency-sensitive agents and applications. They use the same regional provisioned throughput (PTU) capacity as base models, so if you already have regional PTU quota you can deploy your fine-tuned model in support regions.
444390

445391
## Clean up your deployment
446392

articles/ai-services/speech-service/custom-neural-voice-lite.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ author: eric-urban
66
manager: nitinme
77
ms.service: azure-ai-speech
88
ms.topic: how-to
9-
ms.date: 3/10/2025
9+
ms.date: 5/12/2025
1010
ms.author: eur
1111
---
1212

13-
# Custom neural voice lite (preview)
13+
# Custom neural voice lite
1414

1515
Azure AI Speech provides two custom neural voice (CNV) project types: CNV lite and CNV professional.
1616

1717
- Custom neural voice (CNV) professional allows you to upload your training data collected through professional recording studios and create a higher-quality voice that is nearly indistinguishable from its human samples. CNV professional access is limited based on eligibility and usage criteria. Request access on the [intake form](https://aka.ms/customneural).
18-
- Custom neural voice (CNV) lite is a project type in public preview. You can demo and evaluate custom neural voice before investing in professional recordings to create a higher-quality voice. No application is required for demo and evaluation purposes. However, Microsoft restricts and selects the recording and testing samples for use with CNV lite. You must apply for full access to CNV professional in order to deploy and use the CNV lite model for business purpose. In that case, request access on the [intake form](https://aka.ms/customneural).
18+
- Custom neural voice (CNV) lite is a project type where can demo and evaluate custom neural voice before investing in professional recordings to create a higher-quality voice. No application is required for demo and evaluation purposes. However, Microsoft restricts and selects the recording and testing samples for use with CNV lite. You must apply for full access to CNV professional in order to deploy and use the CNV lite model for business purpose. In that case, request access on the [intake form](https://aka.ms/customneural).
1919

2020
With a CNV lite project, you record your voice online by reading 20-50 pre-defined scripts provided by Microsoft. After you've recorded at least 20 samples, you can start to train a model. Once the model is trained successfully, you can review the model and check out 20 output samples produced with another set of pre-defined scripts.
2121

@@ -25,7 +25,7 @@ See the [supported languages](language-support.md?tabs=tts) for custom neural vo
2525

2626
The following table summarizes key differences between the CNV lite and CNV professional project types.
2727

28-
|**Items**|**Lite (Preview)**| **Pro**|
28+
|**Items**|**Lite**| **Pro**|
2929
|---------------|---------------|---------------|
3030
|Target scenarios |Demonstration or evaluation |Professional scenarios like brand and character voices for chat bots, or audio content reading.|
3131
|Training data |Record online using Speech Studio |Bring your own data. Recording in a professional studio is recommended. |

articles/ai-services/speech-service/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ items:
133133
- name: Get facial position with viseme
134134
href: how-to-speech-synthesis-viseme.md
135135
displayName: viseme, phoneme, phonetic
136-
- name: Use high definition (HD) voices (preview)
136+
- name: Use high definition (HD) voices
137137
href: high-definition-voices.md
138138
displayName: hd voice
139139
- name: Custom neural voice
@@ -160,7 +160,7 @@ items:
160160
href: professional-voice-train-voice.md
161161
- name: "Part 5: Deploy and use your voice model"
162162
href: professional-voice-deploy-endpoint.md
163-
- name: Custom neural voice lite (preview)
163+
- name: Custom neural voice lite
164164
href: custom-neural-voice-lite.md
165165
- name: Personal voice
166166
items:

articles/machine-learning/azure-machine-learning-release-notes-cli-v2.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,43 +24,45 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
2424

2525
## 2025-05-09
2626

27-
## Azure Machine Learning CLI (v2) v 2.37.0
27+
### Azure Machine Learning CLI (v2) v 2.37.0
2828
- `az ml workspace create`
2929
- Hub and Project workspace marked as GA.
3030

31-
## 2025-04-23
31+
## 2025-04-24
3232

33-
## Azure Machine Learning CLI (v2) v 2.36.5
33+
### Azure Machine Learning CLI (v2) v 2.36.5
3434
- Pin major version of external dependencies in SDK.
3535

36-
## Azure Machine Learning CLI (v2) v 2.36.4
36+
## 2025-04-18
37+
38+
### Azure Machine Learning CLI (v2) v 2.36.4
3739
- Updated marshmallow dependency to restrict versions to >=3.5,<4.0.0 to ensure compatibility.
3840

39-
## 2025-04-17
41+
## 2025-04-16
4042

41-
## Azure Machine Learning CLI (v2) v 2.36.3
43+
### Azure Machine Learning CLI (v2) v 2.36.3
4244
- Removing reference of deprecated package distutils.
4345

44-
## 2025-04-09
46+
## 2025-04-10
4547

46-
## Azure Machine Learning CLI (v2) v 2.36.2
48+
### Azure Machine Learning CLI (v2) v 2.36.2
4749
- `az ml capability-host create`
4850
- Made AI Search connections property optional.
4951

50-
## 2025-04-01
52+
## 2025-04-02
5153

52-
## Azure Machine Learning CLI (v2) v 2.36.1
54+
### Azure Machine Learning CLI (v2) v 2.36.1
5355
- Handle missing duration value in deployment poller result.
5456

5557
## 2025-03-14
5658

57-
## Azure Machine Learning CLI (v2) v 2.36.0
59+
### Azure Machine Learning CLI (v2) v 2.36.0
5860
- `az ml compute update`
5961
- Fix updating compute when ssh is enabled.
6062

6163
## 2025-01-08
6264

63-
## Azure Machine Learning CLI (v2) v 2.34.0
65+
### Azure Machine Learning CLI (v2) v 2.34.0
6466
- `az ml workspace update --network-acls`
6567
- Added `--network-acls` property to allow user to specify IPs or IP ranges in CIDR notation for workspace access.
6668
- `az ml capability-host`
@@ -70,7 +72,7 @@ __RSS feed__: Get notified when this page is updated by copying and pasting the
7072

7173
## 2024-12-17
7274

73-
## Azure Machine Learning CLI (v2) v 2.33.0
75+
### Azure Machine Learning CLI (v2) v 2.33.0
7476
- `az ml workspace create --provision-network-now`
7577
- Added `--provision-network-now` property to trigger the provisioning of the managed network when creating a workspace with the managed network enabled, or else it does nothing.
7678

0 commit comments

Comments
 (0)