Skip to content

Commit 403a56b

Browse files
authored
Merge pull request #285150 from MicrosoftDocs/main
Publish to Live Wednesday 4AM PST 8/21
2 parents 9aef87e + 8ccefca commit 403a56b

File tree

6 files changed

+39
-20
lines changed

6 files changed

+39
-20
lines changed

articles/ai-studio/concepts/evaluation-metrics-built-in.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ For groundedness, we provide two versions:
238238
| When to use it? | Use the groundedness metric when you need to verify that AI-generated responses align with and are validated by the provided context. It's essential for applications where factual correctness and contextual accuracy are key, like information retrieval, question-answering, and content summarization. This metric ensures that the AI-generated answers are well-supported by the context. |
239239
| What does it need as input? | Question, Context, Generated Answer |
240240

241-
Built-in prompt used by Large Language Model judge to score this metric:
241+
Built-in prompt used by the Large Language Model judge to score this metric:
242242

243243
```
244244
You will be presented with a CONTEXT and an ANSWER about that CONTEXT. You need to decide whether the ANSWER is entailed by the CONTEXT by choosing one of the following rating:
@@ -269,7 +269,7 @@ Note the ANSWER is generated by a computer system, it can contain certain symbol
269269
| What does it need as input? | Question, Context, Generated Answer |
270270

271271

272-
Built-in prompt used by Large Language Model judge to score this metric (For question answering data format):
272+
Built-in prompt used by the Large Language Model judge to score this metric (For question answering data format):
273273

274274
```
275275
Relevance measures how well the answer addresses the main aspects of the question, based on the context. Consider whether all and only the important aspects are contained in the answer when evaluating relevance. Given the context and question, score the relevance of the answer between one to five stars using the following rating scale:
@@ -287,7 +287,7 @@ Five stars: the answer has perfect relevance
287287
This rating value should always be an integer between 1 and 5. So the rating produced should be 1 or 2 or 3 or 4 or 5.
288288
```
289289

290-
Built-in prompt used by Large Language Model judge to score this metric (For conversation data format) (without Ground Truth available):
290+
Built-in prompt used by the Large Language Model judge to score this metric (For conversation data format) (without Ground Truth available):
291291

292292
```
293293
You will be provided a question, a conversation history, fetched documents related to the question and a response to the question in the {DOMAIN} domain. Your task is to evaluate the quality of the provided response by following the steps below:
@@ -317,7 +317,7 @@ You will be provided a question, a conversation history, fetched documents relat
317317
- Your final response must include both the reference answer and the evaluation result. The evaluation result should be written in English. 
318318
```
319319

320-
Built-in prompt used by Large Language Model judge to score this metric (For conversation data format) (with Ground Truth available):
320+
Built-in prompt used by the Large Language Model judge to score this metric (For conversation data format) (with Ground Truth available):
321321

322322
```
323323
@@ -361,7 +361,7 @@ Labeling standards are as following:
361361
| When to use it? | Use it when assessing the readability and user-friendliness of your model's generated responses in real-world applications. |
362362
| What does it need as input? | Question, Generated Answer |
363363

364-
Built-in prompt used by Large Language Model judge to score this metric:
364+
Built-in prompt used by the Large Language Model judge to score this metric:
365365

366366
```
367367
Coherence of an answer is measured by how well all the sentences fit together and sound naturally as a whole. Consider the overall quality of the answer when evaluating coherence. Given the question and answer, score the coherence of answer between one to five stars using the following rating scale:
@@ -389,7 +389,7 @@ This rating value should always be an integer between 1 and 5. So the rating pro
389389
| When to use it? | Use it when evaluating the linguistic correctness of the AI-generated text, ensuring that it adheres to proper grammatical rules, syntactic structures, and vocabulary usage in the generated responses. |
390390
| What does it need as input? | Question, Generated Answer |
391391

392-
Built-in prompt used by Large Language Model judge to score this metric:
392+
Built-in prompt used by the Large Language Model judge to score this metric:
393393

394394
```
395395
Fluency measures the quality of individual sentences in the answer, and whether they are well-written and grammatically correct. Consider the quality of individual sentences when evaluating fluency. Given the question and answer, score the fluency of the answer between one to five stars using the following rating scale:
@@ -417,7 +417,7 @@ This rating value should always be an integer between 1 and 5. So the rating pro
417417
| When to use it? | Use the retrieval score when you want to guarantee that the documents retrieved are highly relevant for answering your users' questions. This score helps ensure the quality and appropriateness of the retrieved content. |
418418
| What does it need as input? | Question, Context, Generated Answer |
419419

420-
Built-in prompt used by Large Language Model judge to score this metric:
420+
Built-in prompt used by the Large Language Model judge to score this metric:
421421

422422
```
423423
A chat history between user and bot is shown below
@@ -473,7 +473,7 @@ Think through step by step:
473473

474474

475475

476-
Built-in prompt used by Large Language Model judge to score this metric:
476+
Built-in prompt used by the Large Language Model judge to score this metric:
477477

478478
```
479479
GPT-Similarity, as a metric, measures the similarity between the predicted answer and the correct answer. If the information and content in the predicted answer is similar or equivalent to the correct answer, then the value of the Equivalence metric should be high, else it should be low. Given the question, correct answer, and predicted answer, determine the value of Equivalence metric using the following rating scale:

articles/app-service/app-service-ip-restrictions.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,10 @@ With service endpoints, you can configure your app with application gateways or
123123

124124
:::image type="content" source="media/app-service-ip-restrictions/access-restrictions-service-tag-add.png?v2" alt-text="Screenshot of the 'Add Restriction' pane with the Service Tag type selected.":::
125125

126-
All available service tags are supported in access restriction rules. Each service tag represents a list of IP ranges from Azure services. A list of these services and links to the specific ranges can be found in the [service tag documentation][servicetags]. Use Azure Resource Manager templates or scripting to configure more advanced rules like regional scoped rules.
126+
All publicly available service tags are supported in access restriction rules. Each service tag represents a list of IP ranges from Azure services. A list of these services and links to the specific ranges can be found in the [service tag documentation][servicetags]. Use Azure Resource Manager templates or scripting to configure more advanced rules like regional scoped rules.
127+
128+
> [!NOTE]
129+
> When creating service tag-based rules through Azure portal or Azure CLI you will need read access at the subscription level to get the full list of service tags for selection/validation. In addition, the `Microsoft.Network` resource provider needs to be registered on the subscription.
127130
128131
### Edit a rule
129132

articles/backup/azure-file-share-support-matrix.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Support Matrix for Azure file share backup by using Azure Backup
33
description: Provides a summary of support settings and limitations when backing up Azure file shares.
44
ms.topic: conceptual
5-
ms.date: 03/29/2024
5+
ms.date: 08/16/2024
66
ms.custom: references_regions, engagement-fy24
77
ms.service: azure-backup
88
author: AbhishekMallick-MS
@@ -188,6 +188,22 @@ Vaulted backup for Azure Files (preview) is available in West Central US, Southe
188188
189189
---
190190

191+
## Daylight savings
192+
193+
Azure Backup doesn't support automatic clock adjustment for daylight saving time for Azure VM backups. It doesn't shift the hour of the backup forward or backwards. To ensure the backup runs at the desired time, modify the backup policies manually as required.
194+
195+
## Support for customer-managed failover
196+
197+
This section describes how your backups and restores are affected after customer-managed failovers.
198+
199+
The following table lists the behavior of backups due to customer-initiated failovers:
200+
201+
| Failover type | Backups | Restore | Enabling protection (re-protection) of failed over account in secondary region |
202+
| --- | --- | --- | --- |
203+
| Customer-managed planned failover | Supported | Supported | Not supported |
204+
| Customer-managed unplanned failover | Not supported | Only cross-region restore from the vault is supported. | Not supported |
205+
206+
191207
## Next steps
192208

193209
* Learn how to [Back up Azure file shares](backup-afs.md)

articles/iot-operations/discover-manage-assets/howto-manage-assets-remotely.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ Now you can define the tags associated with the asset. To add OPC UA tags:
204204
205205
| Node ID | Tag name | Observability mode |
206206
| ------- | -------- | ------------------ |
207-
| ns=3;s=FastUInt10 | temperature | none |
208-
| ns=3;s=FastUInt100 | Tag 10 | none |
207+
| ns=3;s=FastUInt10 | temperature | None |
208+
| ns=3;s=FastUInt100 | Tag 10 | None |
209209
210210
1. Select **Manage default settings** to configure default telemetry settings for the asset. These settings apply to all the OPC UA tags that belong to the asset. You can override these settings for each tag that you add. Default telemetry settings include:
211211
@@ -219,11 +219,11 @@ You can import up to 1000 OPC UA tags at a time from a CSV file:
219219
220220
1. Create a CSV file that looks like the following example:
221221
222-
| NodeID | TagName | Sampling Interval Milliseconds | QueueSize | ObservabilityMode |
223-
|---------------------|----------|--------------------------------|-----------|-------------------|
224-
| ns=3;s=FastUInt1000 | Tag 1000 | 1000 | 5 | none |
225-
| ns=3;s=FastUInt1001 | Tag 1001 | 1000 | 5 | none |
226-
| ns=3;s=FastUInt1002 | Tag 1002 | 5000 | 10 | none |
222+
| NodeID | TagName | QueueSize | ObservabilityMode | Sampling Interval Milliseconds |
223+
|---------------------|----------|-----------|-------------------|--------------------------------|
224+
| ns=3;s=FastUInt1000 | Tag 1000 | 5 | None | 1000 |
225+
| ns=3;s=FastUInt1001 | Tag 1001 | 5 | None | 1000 |
226+
| ns=3;s=FastUInt1002 | Tag 1002 | 10 | None | 5000 |
227227
228228
1. Select **Add tag or CSV > Import CSV (.csv) file**. Select the CSV file you created and select **Open**. The tags defined in the CSV file are imported:
229229

articles/iot-operations/get-started-end-to-end-sample/quickstart-add-assets.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,10 +156,10 @@ Add two OPC UA tags on the **Add tags** page. To add each tag, select **Add tag
156156

157157
| Node ID | Tag name | Observability mode |
158158
| ------------------ | ----------- | ------------------ |
159-
| ns=3;s=FastUInt10 | temperature | none |
160-
| ns=3;s=FastUInt100 | Tag 10 | none |
159+
| ns=3;s=FastUInt10 | temperature | None |
160+
| ns=3;s=FastUInt100 | Tag 10 | None |
161161

162-
The **Observability mode** is one of the following values: `none`, `gauge`, `counter`, `histogram`, or `log`.
162+
The **Observability mode** is one of the following values: `None`, `Gauge`, `Counter`, `Histogram`, or `Log`.
163163

164164
You can select **Manage default settings** to change the default sampling interval and queue size for each tag.
165165

37 Bytes
Loading

0 commit comments

Comments
 (0)