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: sdk/formrecognizer/azure-ai-formrecognizer/MIGRATION_GUIDE.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,9 +31,9 @@ New features provided by the `DocumentAnalysisClient` include:
31
31
32
32
New features provided by the `DocumentModelAdministrationClient` include:
33
33
- Users can now assign their own model IDs and specify a description when building, composing, or copying models.
34
-
- Users can specify the algorithm used to build the custom model through the required `build_mode` parameter on `begin_build_model()`. See more about `build_mode`[here][https://aka.ms/azsdk/formrecognizer/buildmode].
34
+
- Users can specify the algorithm used to build the custom model through the required `build_mode` parameter on `begin_build_document_model()`. See more about `build_mode`[here][https://aka.ms/azsdk/formrecognizer/buildmode].
35
35
- Listing models now includes both prebuilt and custom models.
36
-
- When using `get_model()`, users can get the field schema (field names and types that the model can extract) for the model they specified, including for prebuilt models.
36
+
- When using `get_document_model()`, users can get the field schema (field names and types that the model can extract) for the model they specified, including for prebuilt models.
37
37
- Ability to get information from model operations that occurred in the last 24 hours.
38
38
39
39
The table below describes the relationship of each client and its supported API version(s):
@@ -632,11 +632,11 @@ for doc in model.training_documents:
632
632
```
633
633
634
634
Train a custom model with `3.2.x`:
635
-
Use `begin_build_model()` to build a custom model. Please note that this method has a required `build_mode` parameter. See https://aka.ms/azsdk/formrecognizer/buildmode for more information about build modes. Additionally, `blob_container_url` is a required keyword-only parameter.
635
+
Use `begin_build_document_model()` to build a custom document model. Please note that this method has a required `build_mode` parameter. See https://aka.ms/azsdk/formrecognizer/buildmode for more information about build modes. Additionally, `blob_container_url` is a required keyword-only parameter.
Copy file name to clipboardExpand all lines: sdk/formrecognizer/azure-ai-formrecognizer/azure/ai/formrecognizer/_document_model_administration_client.py
0 commit comments