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
[Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/) is an online tool for visually exploring, understanding, and integrating features from the Form Recognizer service into your applications. Use the [Form Recognizer Studio quickstart](quickstarts/try-v3-form-recognizer-studio.md) to get started analyzing documents with pre-trained models. Build custom template models and reference the models in your applications using the [Python SDK v3.0](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and other quickstarts.
20
+
[Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/) is an online tool for visually exploring, understanding, and integrating features from the Form Recognizer service into your applications. Use the [Form Recognizer Studio quickstart](quickstarts/try-v3-form-recognizer-studio.md) to get started analyzing documents with pretrained models. Build custom template models and reference the models in your applications using the [Python SDK v3.0](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and other quickstarts.
21
21
22
22
The following image shows the Invoice prebuilt model feature at work.
Copy file name to clipboardExpand all lines: articles/applied-ai-services/form-recognizer/concept-model-overview.md
+29-2Lines changed: 29 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ manager: nitinme
7
7
ms.service: applied-ai-services
8
8
ms.subservice: forms-recognizer
9
9
ms.topic: conceptual
10
-
ms.date: 03/08/2023
10
+
ms.date: 03/03/2023
11
11
ms.author: lajanuar
12
12
recommendations: false
13
13
---
@@ -48,7 +48,9 @@ recommendations: false
48
48
|[Identity document (ID)](#identity-document-id)| Extract identity (ID) fields from US driver licenses and international passports. |
49
49
|[Business card](#business-card)| Scan business cards to extract key fields and data into your applications. |
50
50
|**Custom models**||
51
-
|[Custom models](#custom-models)| Extract data from forms and documents specific to your business. Custom models are trained for your distinct data and use cases. |
51
+
|[Custom model (overview)](#custom-models)| Extract data from forms and documents specific to your business. Custom models are trained for your distinct data and use cases. |
52
+
|[Custom extraction models](#custom-extraction)|●**Custom template models** use layout cues to extract values from documents and are suitable to extract fields from highly structured documents with defined visual templates.</br>●**Custom neural models** are trained on various document types to extract fields from structured, semi-structured and unstructured documents.|
53
+
| [Custom classifier model](#custom-classifier)| The **Custom classifier model** can classify each page in an input file to identify the document(s) within and can also identify multiple documents or multiple instances of a single document within an input file.
52
54
| [Composed models](#composed-models) | Combine several custom models into a single model to automate processing of diverse document types with a single composed model.
53
55
54
56
### Read OCR
@@ -184,6 +186,31 @@ Version v3.0 custom model supports signature detection in custom forms (template
Custom extraction model can be one of two types, **custom template** or **custom neural**. To create a custom extraction model, label a dataset of documents with the values you want extracted and train the model on the labeled dataset. You only need five examples of the same form or document type to get started.
194
+
195
+
***Sample custom extraction processed using [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio/customform/projects)***:
196
+
197
+
:::image type="content" source="media/studio/custom-extraction-models.png" alt-text="Screenshot of custom extraction model analysis in Form Recognizer Studio.":::
The custom classifier model enables you to identify the document type prior to invoking the extraction model. The classifier model is available starting with the 2023-02-28-preview. Training a custom classifier model requires at least two distinct classes and a minimum of five samples per class.
A composed model is created by taking a collection of custom models and assigning them to a single model built from your form types. You can assign multiple custom models to a composed model called with a single model ID. You can assign up to 200 trained custom models to a single composed model.
0 commit comments