Skip to content

Commit 61876d6

Browse files
authored
Merge pull request #3135 from MicrosoftDocs/main
2/24/2025 AM Publish
2 parents 540e421 + c2a1930 commit 61876d6

File tree

18 files changed

+74
-774
lines changed

18 files changed

+74
-774
lines changed

.openpublishing.redirection.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,16 @@
229229
"source_path_from_root": "/articles/ai-services/openai/references/azure-machine-learning.md",
230230
"redirect_url": "/azure/ai-services/openai/concepts/use-your-data",
231231
"redirect_document_id": false
232+
},
233+
{
234+
"source_path_from_root": "/articles/open-datasets/dataset-covid-19-open-research.md",
235+
"redirect_url": "/azure/open-datasets/dataset-catalog",
236+
"redirect_document_id": false
237+
},
238+
{
239+
"source_path_from_root": "/articles/open-datasets/dataset-genomics-data-lake.md",
240+
"redirect_url": "/azure/open-datasets/dataset-catalog",
241+
"redirect_document_id": false
232242
}
233243
]
234244
}

articles/ai-foundry/model-inference/supported-languages.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ Azure OpenAI models can be consumed using the following SDKs and programming lan
5757

5858
To use these SDKs, connect them to the [Azure OpenAI service URI](concepts/endpoints.md#azure-openai-inference-endpoint) (usually in the form `https://<resource-name>.openai.azure.com`).
5959

60+
### OpenAI and Azure OpenAI SDK
61+
6062
| Language | Source code | Package | Examples |
6163
|------------|---------|-----|-------|
6264
| C# | [Source code](https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/openai/Azure.AI.OpenAI) | [Azure.AI.OpenAI (NuGet)](https://www.nuget.org/packages/Azure.AI.OpenAI/) | [C# examples](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/openai/Azure.AI.OpenAI/tests/Samples) |

articles/ai-services/anomaly-detector/includes/quickstarts/anomaly-detector-client-library-java-multivariate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ UUID resultId = UUID.fromString(substring[substring.length - 1]);
241241
DetectionResult detectionResult;
242242
while (true) {
243243
detectionResult = anomalyDetectorClient.getDetectionResult(resultId);
244-
DetectionStatus detectionStatus = detectionResult.getSummary().getStatus();;
244+
DetectionStatus detectionStatus = detectionResult.getSummary().getStatus();
245245
if (detectionStatus == DetectionStatus.READY || detectionStatus == DetectionStatus.FAILED) {
246246
break;
247247
}

articles/ai-services/document-intelligence/concept/accuracy-confidence.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Interpret and improve model accuracy and analysis confidence scores
2+
title: Interpret and improve model accuracy and confidence scores
33
titleSuffix: Azure AI services
4-
description: Best practices to interpret the accuracy score from the train model operation and the confidence score from analysis operations.
4+
description: Best practices to interpret and improve Azure AI Document Intelligence accuracy scores from train model operations and confidence scores from analysis operations.
55
author: laujan
66
manager: nitinme
77
ms.service: azure-ai-document-intelligence
88
ms.topic: conceptual
9-
ms.date: 11/19/2024
9+
ms.date: 02/21/2025
1010
ms.author: lajanuar
1111
---
1212

1313
<!-- markdownlint-disable MD033 -->
1414

15-
# Interpret and improve model accuracy and analysis confidence scores
15+
# Interpret and improve accuracy and confidence scores
1616

1717
A confidence score indicates probability by measuring the degree of statistical certainty that the extracted result is detected correctly. The estimated accuracy is calculated by running a few different combinations of the training data to predict the labeled values. In this article, learn to interpret accuracy and confidence scores and best practices for using those scores to improve accuracy and confidence results.
1818

articles/ai-services/document-intelligence/how-to-guides/includes/v4-0/java-sdk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ String documentUrl = "https://raw.githubusercontent.com/Azure-Samples/cognitive-
177177
String modelId = "prebuilt-read";
178178

179179
SyncPoller < OperationResult, AnalyzeResult > analyzeLayoutResultPoller =
180-
client.beginAnalyzeDocument(modelId, invoiceUrl);;
180+
client.beginAnalyzeDocument(modelId, invoiceUrl);
181181

182182
AnalyzeResult analyzeLayoutResult = analyzeLayoutResultPoller.getFinalResult().getAnalyzeResult();
183183

@@ -338,7 +338,7 @@ String modelId = "prebuilt-document";
338338
SyncPoller < OperationResult, AnalyzeResult > analyzeDocumentPoller =
339339
client.beginAnalyzeDocument(modelId, generalDocumentUrl);
340340

341-
AnalyzeResult analyzeResult = analyzeDocumentPoller.getFinalResult().getAnalyzeResult();;
341+
AnalyzeResult analyzeResult = analyzeDocumentPoller.getFinalResult().getAnalyzeResult();
342342

343343
// pages
344344
analyzeResult.getPages().forEach(documentPage -> {

articles/ai-services/openai/how-to/stored-completions.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: nitinme
66
ms.service: azure-ai-openai
77
ms.topic: how-to
88
ms.custom: references_regions
9-
ms.date: 01/29/2025
9+
ms.date: 02/24/2025
1010
author: mrbullwinkle
1111
ms.author: mbullwin
1212
recommendations: false
@@ -22,6 +22,10 @@ Stored completions allow you to capture the conversation history from chat compl
2222

2323
Support first added in `2024-10-01-preview`
2424

25+
### Deployment type
26+
27+
Currently only `Standard` model deployments support stored completions.
28+
2529
### Model & region availability
2630

2731
| **Region** | **o1-preview**, **2024-09-12** | **o1-mini**, **2024-09-12** | **gpt-4o**, **2024-08-06** | **gpt-4o**, **2024-05-13** | **gpt-4o-mini**, **2024-07-18** |

articles/ai-services/openai/includes/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ dependencies {
103103
public class GetCompletionsSample {
104104
105105
public static void main(String[] args) {
106-
String azureOpenaiKey = System.getenv("AZURE_OPENAI_API_KEY");;
107-
String endpoint = System.getenv("AZURE_OPENAI_ENDPOINT");;
106+
String azureOpenaiKey = System.getenv("AZURE_OPENAI_API_KEY");
107+
String endpoint = System.getenv("AZURE_OPENAI_ENDPOINT");
108108
String deploymentOrModelId = "gpt-35-turbo-instruct";
109109
110110
OpenAIClient client = new OpenAIClientBuilder()

articles/ai-services/openai/monitor-openai-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See [Monitor Azure OpenAI](./how-to/monitor-openai.md) for details on the data y
1919

2020
### Supported metrics for Microsoft.CognitiveServices/accounts
2121

22-
Here are the most important metrics we think you should monitor for Azure OpenAI. Later in this article is a longer list of all available Azure AI services metrics which contains more details on metrics in this shorter list.
22+
Here are the most important metrics we think you should monitor for Azure OpenAI. Later in this article is a longer list of all available Azure AI services metrics which contains more details on metrics in this shorter list. _Please see below list for most up to date information. We're working on refreshing the tables in the following sections._
2323

2424
- Azure OpenAI Requests
2525
- Active Tokens
@@ -42,9 +42,9 @@ You can also monitor Content Safety metrics that are used by other Azure AI serv
4242
- Safety System Event
4343
- Total Volume Sent for Safety Check
4444

45-
4645
> [!NOTE]
4746
> The **Provisioned-managed Utilization** metric is now deprecated and is no longer recommended. This metric has been replaced by the **Provisioned-managed Utilization V2** metric.
47+
> Tokens per Second, Time to Response, Time Between Tokens are currently not available for pay-as-you-go (Standard) deployments.
4848
4949
Cognitive Services metrics have the category **Cognitive Services - HTTP Requests** in the following table. These metrics are legacy metrics that are common to all Azure AI Services resources. Microsoft no longer recommends that you use these metrics with Azure OpenAI.
5050

articles/ai-services/speech-service/includes/language-support/viseme.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ ms.author: Zoubaolian
109109
| vi-VN | Vietnamese (Vietnam) |Viseme ID|
110110
| zh-CN | Chinese (Mandarin, Simplified) |Viseme ID <br> Blend shapes|
111111
| zh-HK | Chinese (Cantonese, Traditional)|Viseme ID|
112-
| zh-TW | Chinese (Taiwanese Mandarin, Traditional)|Viseme ID|
113-
112+
| zh-HK | Chinese (Taiwanese Mandarin, Traditional)|Viseme ID (except `zh-TW-HsiaoYuNeural`)|
114113

115114

116115

0 commit comments

Comments
 (0)