-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FR] Selectionmarks #15248
[FR] Selectionmarks #15248
Conversation
/azp run net - formrecognizer - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
f016f6e
to
e631b5a
Compare
sdk/formrecognizer/Azure.AI.FormRecognizer/src/RecognizeContentOperation.cs
Show resolved
Hide resolved
...cognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs
Show resolved
Hide resolved
...cognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs
Outdated
Show resolved
Hide resolved
...cognizer/Azure.AI.FormRecognizer/tests/FormRecognizerClient/FormRecognizerClientLiveTests.cs
Show resolved
Hide resolved
sdk/formrecognizer/Azure.AI.FormRecognizer/samples/Sample1_RecognizeFormContent.md
Outdated
Show resolved
Hide resolved
fe743db
to
57e3d79
Compare
@@ -101,7 +101,7 @@ var client = new FormRecognizerClient(new Uri(endpoint), new DefaultAzureCredent | |||
`FormRecognizerClient` provides operations for: | |||
|
|||
- Recognizing form fields and content, using custom models trained to recognize your custom forms. These values are returned in a collection of `RecognizedForm` objects. See example [Recognize Custom Forms](#recognize-custom-forms). | |||
- Recognizing form content, including tables, lines and words, without the need to train a model. Form content is returned in a collection of `FormPage` objects. See example [Recognize Content](#recognize-content). | |||
- Recognizing form content, including tables, lines, words, and selection marks like radio buttons and check boxes without the need to train a model. Form content is returned in a collection of `FormPage` objects. See example [Recognize Content](#recognize-content). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if we should say something about training custom models with labels to recognize selection marks as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought about it but looking at Recognizing form fields and content, using custom models trained to recognize your custom forms.
makes me think that it already includes it. Although selectionmarks
is a new concept, the idea of recognizing fields and content still applies.
sdk/formrecognizer/Azure.AI.FormRecognizer/src/FormSelectionMarkState.cs
Outdated
Show resolved
Hide resolved
[Test] | ||
[TestCase(true)] | ||
[TestCase(false)] | ||
[Ignore("Need to get an approved file to test")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we following up on this?
Is this test still ignored?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. I keep pinging service team about it.
And yes, test is ignored
/azp run net - formrecognizer - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Hello @maririos! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
Includes additions to: - As type in FormField - As a list on FormPage - As an element type on FieldData/FormTableCell - requires parsing the json pointer - Mocking - Tests - Samples - Documentation Fixes: Azure#14816 ~~Making it draft until I get green light to share the files for training/test selection mark~~ Test are disabled until we can upload the file here. I created issue Azure#15495 to track that
Includes additions to:
Fixes: #14816
Making it draft until I get green light to share the files for training/test selection markTest are disabled until we can upload the file here. I created issue #15495 to track that