Skip to content

Commit 251a298

Browse files
committed
update
1 parent f9b555f commit 251a298

14 files changed

+51
-46
lines changed

articles/applied-ai-services/form-recognizer/concept-business-card.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ recommendations: false
1313
---
1414
<!-- markdownlint-disable MD033 -->
1515

16-
# Azure Form Recognizer Business Card model
16+
# Form Recognizer Business Card model
1717

1818
The business card model combines powerful Optical Character Recognition (OCR) capabilities with deep learning models to analyze and extract key information from business card images. The API analyzes printed business cards; extracts key information such as first name, last name, company name, email address, and phone number; and returns a structured JSON data representation.
1919

@@ -194,7 +194,7 @@ See how data, including name, job title, address, email, and company name, is ex
194194

195195
## Supported locales
196196

197-
**Pre-built business cards v2.1** supports the following locales:
197+
**Prebuilt business cards v2.1** supports the following locales:
198198

199199
* **en-us**
200200
* **en-au**
@@ -212,15 +212,15 @@ See how data, including name, job title, address, email, and company name, is ex
212212

213213
::: moniker range="form-recog-3.0.0"
214214

215-
* [Learn how to process your own forms and documents](quickstarts/try-v3-form-recognizer-studio.md) with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
215+
* Try processing your own forms and documents with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
216216

217217
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
218218

219219
::: moniker-end
220220

221221
::: moniker range="form-recog-2.1.0"
222222

223-
* [Learn how to process your own forms and documents](quickstarts/try-sample-label-tool.md) with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
223+
* Try processing your own forms and documents with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
224224

225225
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-2.1.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
226226

articles/applied-ai-services/form-recognizer/concept-composed-models.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ With composed models, you can assign multiple custom models to a composed model
4141
4242
### Composed model compatibility
4343

44-
|Custom model type|Models trained with v2.1 and v2.0| Custom template models v3.0 (preview)|Custom neural models v3.0 (preview)|Custom neural models 3.0 (GA)|
44+
|Custom model type|Models trained with v2.1 and v2.0| Custom template models v3.0 |Custom neural models v3.0 |Custom neural models 3.0 (GA)|
4545
|--|--|--|--|--|
4646
|**Models trained with version 2.1 and v2.0** |Supported|Supported|Not Supported|Not Supported|
47-
|**Custom template models v3.0 (preview)** |Supported|Supported|Not Supported|NotSupported|
47+
|**Custom template models v3.0** |Supported|Supported|Not Supported|NotSupported|
4848
|**Custom template models v3.0 (GA)** |Not Supported|Not Supported|Supported|Not Supported|
49-
|**Custom neural models v3.0 (preview)**|Not Supported|Not Supported|Supported|Not Supported|
49+
|**Custom neural models v3.0**|Not Supported|Not Supported|Supported|Not Supported|
5050
|**Custom Neural models v3.0 (GA)**|Not Supported|Not Supported|Not Supported|Supported|
5151

5252
* To compose a model trained with a prior version of the API (v2.1 or earlier), train a model with the v3.0 API using the same labeled dataset. That addition will ensure that the v2.1 model can be composed with other models.

articles/applied-ai-services/form-recognizer/concept-custom.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ recommendations: false
1616

1717
[!INCLUDE [applies to v3.0 and v2.1](includes/applies-to-v3-0-and-v2-1.md)]
1818

19-
Form Recognizer uses advanced machine learning technology to detect and extract information from forms and documents and returns the extracted data in a structured JSON output. With Form Recognizer, you can use pre-built or pre-trained models or you can train standalone custom models. Custom models extract and analyze distinct data and use cases from forms and documents specific to your business. Standalone custom models can be combined to create [composed models](concept-composed-models.md).
19+
Form Recognizer uses advanced machine learning technology to detect and extract information from forms and documents and returns the extracted data in a structured JSON output. With Form Recognizer, you can use prebuilt or pre-trained models or you can train standalone custom models. Custom models extract and analyze distinct data and use cases from forms and documents specific to your business. Standalone custom models can be combined to create [composed models](concept-composed-models.md).
2020

2121
To create a custom model, you 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.
2222

articles/applied-ai-services/form-recognizer/concept-form-recognizer-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The following Form Recognizer service features are available in the Studio.
3333

3434
* **General Documents**: Try out Form Recognizer's General Documents feature to extract key-value pairs and entities. Start with the [Studio General Documents feature](https://formrecognizer.appliedai.azure.com/studio/document). Explore with sample documents and your documents. Use the interactive visualization and JSON output to understand how the feature works. See the [General Documents overview](concept-general-document.md) to learn more and get started with the [Python SDK quickstart for Layout](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true#general-document-model).
3535

36-
* **Prebuilt models**: Form Recognizer's pre-built models enable you to add intelligent document processing to your apps and flows without having to train and build your own models. As an example, start with the [Studio Invoice feature](https://formrecognizer.appliedai.azure.com/studio/prebuilt?formType=invoice). Explore with sample documents and your documents. Use the interactive visualization, extracted fields list, and JSON output to understand how the feature works. See the [Models overview](concept-model-overview.md) to learn more and get started with the [Python SDK quickstart for Prebuilt Invoice](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true#prebuilt-model).
36+
* **Prebuilt models**: Form Recognizer's prebuilt models enable you to add intelligent document processing to your apps and flows without having to train and build your own models. As an example, start with the [Studio Invoice feature](https://formrecognizer.appliedai.azure.com/studio/prebuilt?formType=invoice). Explore with sample documents and your documents. Use the interactive visualization, extracted fields list, and JSON output to understand how the feature works. See the [Models overview](concept-model-overview.md) to learn more and get started with the [Python SDK quickstart for Prebuilt Invoice](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true#prebuilt-model).
3737

3838
* **Custom models**: Form Recognizer's custom models enable you to extract fields and values from models trained with your data, tailored to your forms and documents. Create standalone custom models or combine two or more custom models to create a composed model to extract data from multiple form types. Start with the [Studio Custom models feature](https://formrecognizer.appliedai.azure.com/studio/custommodel/projects). Use the online wizard, labeling interface, training step, and visualizations to understand how the feature works. Test the custom model with your sample documents and iterate to improve the model. See the [Custom models overview](concept-custom.md) to learn more and use the [Form Recognizer v3.0 migration guide](v3-migration-guide.md) to start integrating the new models with your applications.
3939

articles/applied-ai-services/form-recognizer/concept-general-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ recommendations: false
1414
---
1515
<!-- markdownlint-disable MD033 -->
1616

17-
# Azure Form Recognizer general document model
17+
# Form Recognizer general document model
1818

1919
**This article applies to:** ![Form Recognizer v3.0 checkmark](media/yes-icon.png) **Form Recognizer v3.0**.
2020

articles/applied-ai-services/form-recognizer/concept-id-document.md

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ ms.custom: references.regions
1414
---
1515
<!-- markdownlint-disable MD033 -->
1616

17-
# Azure Form Recognizer Identity document (ID) model
18-
19-
The Form Recognizer Identity document (ID) model combines Optical Character Recognition (OCR) with deep learning models to analyze and extract key information from identity documents: US Drivers Licenses (all 50 states and District of Columbia), international passport biographical pages, US state IDs, social security cards, and permanent resident cards and more. The API analyzes identity documents, extracts key information, and returns a structured JSON data representation.
17+
# Form Recognizer identity document (ID) model
2018

2119
::: moniker range="form-recog-3.0.0"
2220
[!INCLUDE [applies to v3.0](includes/applies-to-v3-0.md)]
@@ -26,9 +24,13 @@ The Form Recognizer Identity document (ID) model combines Optical Character Reco
2624
[!INCLUDE [applies to v2.1](includes/applies-to-v2-1.md)]
2725
::: moniker-end
2826

29-
## Identity document (ID) processing
27+
Azure Form Recognizer Identity document (ID) model combines Optical Character Recognition (OCR) with deep learning models to analyze and extract key information from identity documents: US Drivers Licenses (all 50 states and District of Columbia), international passport biographical pages, US state IDs, social security cards, and permanent resident cards and more. The API analyzes identity documents, extracts key information, and returns a structured JSON data representation.
28+
29+
## Identity document processing
30+
31+
Identity document processing involves extracting data from identity documents either manually or by using OCR based techniques. Examples of identity documents include passports, driver licenses, resident cards, and national identity cards like the US social security card.
3032

31-
Identity document (ID) processing involves extraction of data from identity documents whether manually or using OCR based techniques. Examples of identity documents include passports, driver licenses, resident cards, and national identity cards like the social security card in the US. It's an important step in any business process that requires some proof of identity. Examples include customer verification in banks and other financial institutions, mortgage applications, medical visits, claim processing, hospitality industry, and more. Individuals provide some proof of their identity via driver licenses, passports, and other similar documents so that the business can efficiently verify them before providing services and benefits.
33+
ID document processing an important step in any business process that requires some proof of identity. Examples include customer verification in banks and other financial institutions, mortgage applications, medical visits, claim processing, hospitality industry, and more. Individuals provide some proof of their identity via driver licenses, passports, and other similar documents so that the business can efficiently verify them before providing services and benefits.
3234

3335
::: moniker range="form-recog-3.0.0"
3436

@@ -73,9 +75,13 @@ The following tools are supported by Form Recognizer v2.1:
7375
|**ID document model**| <ul><li>[**Form Recognizer labeling tool**](https://fott-2-1.azurewebsites.net/prebuilts-analyze)</li><li>[**REST API**](/azure/applied-ai-services/form-recognizer/how-to-guides/use-sdk-rest-api?view=form-recog-2.1.0&preserve-view=true&tabs=windows&pivots=programming-language-rest-api#analyze-identity-id-documents)</li><li>[**Client-library SDK**](/azure/applied-ai-services/form-recognizer/how-to-guides/v2-1-sdk-rest-api)</li><li>[**Form Recognizer Docker container**](containers/form-recognizer-container-install-run.md?tabs=id-document#run-the-container-with-the-docker-compose-up-command)</li></ul>|
7476
::: moniker-end
7577

78+
## Input requirements
79+
80+
[!INCLUDE [input requirements](./includes/input-requirements.md)]
81+
7682
### Try Form Recognizer
7783

78-
Extract data, including name, birth date, machine-readable zone, and expiration date, from ID documents using the Form Recognizer Studio. You'll need the following resources:
84+
Extract data, including name, birth date, and expiration date, from ID documents. You'll need the following resources:
7985

8086
* An Azure subscription—you can [create one for free](https://azure.microsoft.com/free/cognitive-services/)
8187

@@ -145,10 +151,6 @@ Extract data, including name, birth date, machine-readable zone, and expiration
145151
* The "documentResults" field contains key/value pairs information and line items information for the most relevant parts of the document.
146152
::: moniker-end
147153

148-
## Input requirements
149-
150-
[!INCLUDE [input requirements](./includes/input-requirements.md)]
151-
152154
::: moniker range="form-recog-3.0.0"
153155

154156
## Supported languages and locales
@@ -301,7 +303,7 @@ Below are the fields extracted per document type. The Azure Form Recognizer ID m
301303

302304
## Supported document types and locales
303305

304-
**Pre-built ID v2.1** extracts key values from worldwide passports, and U.S. Driver's Licenses in the **en-us** locale.
306+
**Prebuilt ID v2.1** extracts key values from worldwide passports, and U.S. Driver's Licenses in the **en-us** locale.
305307

306308
## Fields extracted
307309

@@ -330,15 +332,15 @@ Below are the fields extracted per document type. The Azure Form Recognizer ID m
330332

331333
::: moniker range="form-recog-3.0.0"
332334

333-
* [Learn how to process your own forms and documents](quickstarts/try-v3-form-recognizer-studio.md) with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
335+
* Try processing your own forms and documents with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
334336

335337
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
336338

337339
::: moniker-end
338340

339341
::: moniker range="form-recog-2.1.0"
340342

341-
* [Learn how to process your own forms and documents](quickstarts/try-sample-label-tool.md) with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
343+
* Try processing your own forms and documents with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
342344

343345
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-2.1.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
344346

articles/applied-ai-services/form-recognizer/concept-invoice.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ recommendations: false
1313
---
1414
<!-- markdownlint-disable MD033 -->
1515

16-
# Azure Form Recognizer invoice model
16+
# Form Recognizer invoice model
1717

1818
::: moniker range="form-recog-3.0.0"
1919
[!INCLUDE [applies to v3.0](includes/applies-to-v3-0.md)]
@@ -216,7 +216,7 @@ Keys can also exist in isolation when the model detects that a key exists, with
216216

217217
## Supported locales
218218

219-
**Pre-built invoice v2.1** supports invoices in the **en-us** locale.
219+
**Prebuilt invoice v2.1** supports invoices in the **en-us** locale.
220220

221221
## Fields extracted
222222

@@ -283,15 +283,15 @@ The JSON output has three parts:
283283

284284
::: moniker range="form-recog-3.0.0"
285285

286-
* [Learn how to process your own forms and documents](quickstarts/try-v3-form-recognizer-studio.md) with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
286+
* Try processing your own forms and documents with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
287287

288288
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
289289

290290
::: moniker-end
291291

292292
::: moniker range="form-recog-2.1.0"
293293

294-
* [Learn how to process your own forms and documents](quickstarts/try-sample-label-tool.md) with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
294+
* Try processing your own forms and documents with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
295295

296296
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-2.1.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
297297

articles/applied-ai-services/form-recognizer/concept-layout.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.author: lajanuar
1212
recommendations: false
1313
---
1414

15-
# Azure Form Recognizer layout model
15+
# Form Recognizer layout model
1616

1717
The Form Recognizer Layout is an advanced machine-learning based document layout analysis model available in the Form Recognizer cloud API. In the version v2.1, the document layout model extracted text lines, words, tables, and selection marks.
1818

@@ -404,15 +404,15 @@ Layout API also extracts selection marks from documents. Extracted selection mar
404404

405405
::: moniker range="form-recog-3.0.0"
406406

407-
* [Learn how to process your own forms and documents](quickstarts/try-v3-form-recognizer-studio.md) with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
407+
* Try processing your own forms and documents with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
408408

409409
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
410410

411411
::: moniker-end
412412

413413
::: moniker range="form-recog-2.1.0"
414414

415-
* [Learn how to process your own forms and documents](quickstarts/try-sample-label-tool.md) with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
415+
* Try processing your own forms and documents with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
416416

417417
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-2.1.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
418418

articles/applied-ai-services/form-recognizer/concept-model-overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,15 +333,15 @@ A composed model is created by taking a collection of custom models and assignin
333333

334334
::: moniker range="form-recog-3.0.0"
335335

336-
* [Learn how to process your own forms and documents](quickstarts/try-v3-form-recognizer-studio.md) with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
336+
* Try processing your own forms and documents with the [Form Recognizer Studio](https://formrecognizer.appliedai.azure.com/studio)
337337

338338
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-3.0.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
339339

340340
::: moniker-end
341341

342342
::: moniker range="form-recog-2.1.0"
343343

344-
* [Learn how to process your own forms and documents](quickstarts/try-sample-label-tool.md) with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
344+
* Try processing your own forms and documents with the [Form Recognizer sample labeling tool](https://fott-2-1.azurewebsites.net/)
345345

346346
* Complete a [Form Recognizer quickstart](quickstarts/get-started-sdks-rest-api.md?view=form-recog-2.1.0&preserve-view=true) and get started creating a document processing app in the development language of your choice.
347347

0 commit comments

Comments
 (0)