Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions sdk/formrecognizer/Azure.AI.FormRecognizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ Azure Cognitive Services Form Recognizer is a cloud service that uses machine le

- Recognize Custom Forms - Recognize and extract form fields and other content from your custom forms, using models you trained with your own form types.
- Recognize Form Content - Recognize and extract tables, lines, words, and selection marks like radio buttons and check boxes in forms documents, without the need to train a model.
<<<<<<< HEAD
- Recognize Receipts - Recognize and extract common fields from US receipts, using a pre-trained receipt model.
- Recognize Business Card - Recognize and extract common fields from business cards, using a pre-trained business cards model.
=======
- Recognize Receipts - Recognize and extract common fields from receipts, using a pre-trained receipt model.
>>>>>>> locale tests
- Recognize Business Card - Recognize and extract common fields from business cards, using a pre-trained business cards model.

[Source code][formreco_client_src] | [Package (NuGet)][formreco_nuget_package] | [API reference documentation][formreco_refdocs] | [Product documentation][formreco_docs] | [Samples][formreco_samples]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public void StartRecognizeContentFromUriThrowsForNonExistingContent()

[Test]
[TestCase(true)]
[TestCase(false, Ignore = "File not yet in Github")]
[TestCase(false)]
public async Task StartRecognizeContentWithSelectionMarks(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand All @@ -400,7 +400,7 @@ public async Task StartRecognizeContentWithSelectionMarks(bool useStream)
}
else
{
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.InvoiceMultipage);
var uri = FormRecognizerTestEnvironment.CreateUri(TestFile.FormSelectionMarks);
operation = await client.StartRecognizeContentFromUriAsync(uri);
}

Expand Down Expand Up @@ -1164,7 +1164,7 @@ public void StartRecognizeBusinessCardsFromUriThrowsForNonExistingContent()

[Test]
[TestCase(true)]
[TestCase(false, Ignore ="File not on Github")]
[TestCase(false)]
public async Task StartRecognizeBusinessCardsCanParseMultipageForm(bool useStream)
{
var client = CreateFormRecognizerClient();
Expand Down
Loading