You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/explore-models-azure-ai-studio/6-knowledge-check.yml
+19-19Lines changed: 19 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,25 @@ metadata:
6
6
prefetch-feature-rollout: true
7
7
title: Knowledge check
8
8
description: "Knowledge check about configuring language models."
9
-
ms.date: 03/14/2025
9
+
ms.date: 03/26/2025
10
10
author: madiepev
11
11
ms.author: madiepev
12
12
ms.topic: unit
13
13
durationInMinutes: 3
14
14
content: |
15
15
quiz:
16
16
questions:
17
+
- content: "Where can you test a deployed model in the Azure AI Foundry portal?"
18
+
choices:
19
+
- content: "Chat playground"
20
+
isCorrect: true
21
+
explanation: "Correct. The chat playground is designed for interactive testing and experimentation with deployed models, allowing you to explore how the model responds in real-time."
22
+
- content: "Sandbox"
23
+
isCorrect: false
24
+
explanation: "Incorrect. A sandbox is typically a safe environment for testing code changes, but it isn't designed for testing deployed language models."
25
+
- content: "Development toolbox"
26
+
isCorrect: false
27
+
explanation: "Incorrect. The development toolbox can contain various tools for development purposes, but it isn't the place where you would test a deployed model."
17
28
- content: "You want to specify the tone, format, and content for each interaction with your model in the playground. What should you use to customize the model response?"
18
29
choices:
19
30
- content: "Benchmarks"
@@ -25,26 +36,15 @@ quiz:
25
36
- content: "System message"
26
37
isCorrect: true
27
38
explanation: "Correct. System messages are used to customize the model's responses by specifying the tone, format, and content for each interaction."
28
-
- content: "What pattern can you use to ground prompts?"
39
+
- content: "What deployment options for an OpenAI model incur no cost for deployment and charge for inferencing based on token-based billing?"
29
40
choices:
30
-
- content: "Metadata Optimized Prompt (MOP)"
41
+
- content: "Only Azure OpenAI Service"
31
42
isCorrect: false
32
-
explanation: "Incorrect. MOP isn't a recognized pattern for grounding prompts."
33
-
- content: "Retrieval Augmented Generation (RAG)"
34
-
isCorrect: true
35
-
explanation: "Correct. RAG involves using a retrieval-based approach to provide relevant information to the model, which can help ground the prompts in specific knowledge or data."
36
-
- content: "Data Understanding Support Text (DUST)"
43
+
explanation: "Incorrect. Azure OpenAI Service is not the only option for the required deployment criteria."
44
+
- content: "Only managed compute"
37
45
isCorrect: false
38
-
explanation: "Incorrect. DUST isn't a recognized pattern for grounding prompts."
39
-
- content: "Where can you test a deployed model in the Azure AI Foundry portal?"
40
-
choices:
41
-
- content: "Chat playground"
46
+
explanation: "Incorrect. Managed compute is charged per-minute."
47
+
- content: "Either Azure OpenAI Service or Azure AI Model Inferencing Service"
42
48
isCorrect: true
43
-
explanation: "Correct. The chat playground is designed for interactive testing and experimentation with deployed models, allowing you to explore how the model responds in real-time."
44
-
- content: "Sandbox"
45
-
isCorrect: false
46
-
explanation: "Incorrect. A sandbox is typically a safe environment for testing code changes, but it isn't designed for testing deployed language models."
47
-
- content: "Development toolbox"
48
-
isCorrect: false
49
-
explanation: "Incorrect. The development toolbox can contain various tools for development purposes, but it isn't the place where you would test a deployed model."
49
+
explanation: "Correct. You can deploy OpenAI mdoels to either Azure OpenAI Service or Azure AI Model Inferencing Service."
Foundation models, such as GPT-4, are state-of-the-art natural language processing models designed to understand, generate, and interact with human language. To understand the significance of foundation models, it's essential to explore their origins, which stem from advancements in the field of natural language processing.
1
+
Generative AI applications are built on *language models*. The development process usually starts with an exploration and comparison of available *foundation* models to find the one that best suits the particular needs of your application. After selecting a suitable model, you deploy it to an endpoint where it can be consumed by a client application or AI agent.
2
2
3
-
## Understand natural language processing
4
-
5
-
Natural language processing (NLP) is a type of artificial intelligence (AI) that focuses on understanding, interpreting, and generating human language. Some common NLP use cases are:
3
+
Foundation models, such as the GPT family of models, are state-of-the-art language models designed to understand, generate, and interact with natural language. Some common use cases for models are:
6
4
7
5
-**Speech-to-text and text-to-speech conversion**. For example, generate subtitles for videos.
8
6
-**Machine translation**. For example, translate text from English to Japanese.
@@ -12,16 +10,11 @@ Natural language processing (NLP) is a type of artificial intelligence (AI) that
12
10
-**Question answering**. For example, provide answers to questions like "What is the capital of France?"
13
11
-**Reasoning**. For example, solve a mathematical problem.
14
12
15
-
> [!Note]
16
-
> In this module, you focus on exploring foundation models used for question answering. The foundation models you explore can be used for chat applications in which you use a language model to generate a response to a user's question.
17
-
18
-
### Understand the importance of the Transformer architecture
19
-
20
-
The latest breakthrough in **Natural Language Processing** (**NLP**) is owed to the development of the **Transformer** architecture.
21
-
22
-
Transformers were introduced in the [*Attention is all you need* paper by Vaswani, et al. from 2017](https://arxiv.org/abs/1706.03762?azure-portal=true). The Transformer architecture provided two innovations to NLP that resulted in the emergence of foundation models:
13
+
In this module, you focus on exploring foundation models used for question answering. The foundation models you explore can be used for chat applications in which you use a language model to generate a response to a user's question.
23
14
24
-
- Instead of processing words sequentially, Transformers process each word independently and in parallel by using **attention**.
25
-
- Next to the semantic similarity between words, Transformers use **positional encoding** to include the information about the position of a word in a sentence.
15
+
> [!NOTE]
16
+
> The latest breakthrough in generative AI models is owed to the development of the **Transformer** architecture. Transformers were introduced in the [*Attention is all you need* paper by Vaswani, et al. from 2017](https://arxiv.org/abs/1706.03762?azure-portal=true). The Transformer architecture provided two innovations to NLP that resulted in the emergence of foundation models:
17
+
>
18
+
> - Instead of processing words sequentially, Transformers process each word independently and in parallel by using **attention**.
19
+
> - Next to the semantic similarity between words, Transformers use **positional encoding** to include the information about the position of a word in a sentence.
26
20
27
-
Foundation models designed for NLP use cases are often referred to as **Large Language Models** (**LLMs**) or language models. In this module, you explore the available language models, how to select a model for your use case, and how to use a language model with the Azure AI Foundry portal. You focus on language models that help you to develop generative AI apps that serve as chat applications that do question answering, answering questions to your users.
0 commit comments