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: articles/ai-services/content-understanding/quickstart/use-ai-foundry.md
+20-10Lines changed: 20 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,19 +36,18 @@ To get started, make sure you have the following resources and permissions:
36
36
Follow these steps to create a custom task in the Azure AI Foundry. This task will be used to build your first analyzer.
37
37
38
38
1. Go to the **Home** page of [Azure AI Foundry](https://ai.azure.com).
39
-
40
39
1. Select your hub based project. You might need to select **View all resources** to see your project.
41
40
1. Select **Content Understanding** from the left navigation pane.
42
41
1. Select **+ Create**.
42
+
2. Choose a task type. The type of task that you create depends on what data you plan to bring in.
43
+
*[Single-file task:](#single-file-task-standard-mode) A single-file task utilizes Content Understanding Standard mode and allows you to bring in one file to create your analyzer:
44
+
*[Multi-file task:](#multi-file-task-pro-mode) A multi-file task utilizes Content Understanding Pro mode and allows you to bring in multiple files to create your analyzer. You can also bring in a set of reference data that the service can use to perform multi-step reasoning and make conclusions about your data. To learn more about the difference between Content Understanding Standard and Pro mode, check out [Azure AI Content Understanding pro and standard modes](../concepts/standard-pro-modes.md).
43
45
1. Enter a name for your task. Optionally, enter a description and change other settings.
44
46
1. Select **Create**.
45
47
46
48
## Create your first task analyzer
47
49
48
-
Now that everything is configured to get started, we can walk through, step-by-step, how to create a task and build your first analyzer. The type of task that you create depends on what data you plan to bring in.
49
-
50
-
*[Single-file task:](#single-file-task-standard-mode) A single-file task utilizes Content Understanding Standard mode and allows you to bring in one file to create your analyzer.
51
-
*[Multi-file task:](#multi-file-task-pro-mode) A multi-file task utilizes Content Understanding Pro mode and allows you to bring in multiple files to create your analyzer. You can also bring in a set of reference data that the service can use to perform multi-step reasoning and make conclusions about your data. To learn more about the difference between Content Understanding Standard and Pro mode, check out [Azure AI Content Understanding pro and standard modes](../concepts/standard-pro-modes.md).
50
+
Now that everything is configured to get started, we can walk through, step-by-step, how to build your first analyzer.
52
51
53
52
### Single-file task (Standard mode)
54
53
@@ -57,7 +56,7 @@ When you create a single-file Content Understanding task, you'll start by buildi
57
56
58
57
1. Upload a sample file of an invoice document or any other data relevant to your scenario.
59
58
60
-
:::image type="content" source="../media/analyzer-template/define-schema-upload.png" alt-text="Screenshot of upload step in user experience.":::
59
+
:::image type="content" source="../media/quickstart/upload-data.png" alt-text="Screenshot of upload step in user experience.":::
61
60
62
61
1. Next, the Content Understanding service suggests analyzer templates based on your content type. Check out [Analyzer templates offered with Content Understanding](../concepts/analyzer-templates.md) for a full list of all templates offered for each modality. For this example, select **Document analysis** to build your own schema tailored to the invoice scenario. When using your own data, select the analyzer template that best fits your needs, or create your own. See [Analyzer templates](../concepts/analyzer-templates.md) for a full list of available templates.
63
62
@@ -97,7 +96,7 @@ In this example, the schema is created to extract key fields from an invoice doc
97
96
98
97
1. Upload one or multiple sample files of invoice documents or any other document data relevant to your scenario.
99
98
100
-
:::image type="content" source="../media/analyzer-template/define-schema-upload.png" alt-text="Screenshot of upload step in user experience.":::
99
+
:::image type="content" source="../media/quickstart/upload-test-data.png" alt-text="Screenshot of upload step in user experience.":::
101
100
102
101
2. Add fields to your schema:
103
102
@@ -109,19 +108,30 @@ In this example, the schema is created to extract key fields from an invoice doc
109
108
110
109
* Specify the method to generate the value for each field.
111
110
111
+
:::image type="content" source="../media/quickstart/add-fields.png" alt-text="Screenshot of upload step in user experience.":::
112
+
113
+
112
114
3. Select **Save**.
113
115
114
-
:::image type="content" source="../media/analyzer-template/define-schema.png" alt-text="Screenshot of completed schema.":::
116
+
:::image type="content" source="../media/quickstart/save-schema.png" alt-text="Screenshot of completed schema.":::
115
117
116
118
4. Upload one or more pieces of reference data for the service to analyze. Adding reference data allows the model to compare and apply multi-step reasoning to your test data in order to infer conclusions about that data.
117
119
120
+
:::image type="content" source="../media/quickstart/reference-data.png" alt-text="Screenshot of completed schema.":::
121
+
118
122
5. Run analysis on your data. Kicking off analysis generates an output on your test files based on the schema that you just created, and applies predictions by comparing that output to your reference data.
119
123
124
+
:::image type="content" source="../media/quickstart/prediction.png" alt-text="Screenshot of completed schema.":::
125
+
120
126
6. Once you're satisfied with the quality of your output, select **Build analyzer**. This action creates an analyzer ID that you can integrate into your own applications, allowing you to call the analyzer from your code.
121
127
122
-
:::image type="content" source="../media/analyzer-template/build-analyzer.png" alt-text="Screenshot of built analyzer.":::
128
+
:::image type="content" source="../media/quickstart/build-analyzer.png" alt-text="Screenshot of built analyzer.":::
129
+
130
+
Now you successfully built your first Content Understanding analyzer, and are ready to start extracting insights from your data. When you select the analyzer you just created, you can view sample code to get started with implenting this in code.
131
+
132
+
:::image type="content" source="../media/quickstart/view-code.png" alt-text="Screenshot of completed schema.":::
123
133
124
-
Now you successfully built your first Content Understanding analyzer, and are ready to start extracting insights from your data. When you select the analyzer you just created, you can view sample code to get started with implenting this in code. Check out [Quickstart: Azure AI Content Understanding REST APIs](./use-rest-api.md) to utilize the REST API to call your analyzer.
134
+
Check out [Quickstart: Azure AI Content Understanding REST APIs](./use-rest-api.md) to utilize the REST API to call your analyzer.
0 commit comments