alex jo
alex jo

Reputation: 1

Document Intelligence Azure, Outcome disparities exist between the API and Studio models

I'm using the prebuilt-layout model :

with open(file_path, "rb") as pdf:
    print(pdf)
    poller = document_analysis_client.begin_analyze_document(
        model_id="prebuilt-layout",
        document=pdf
    )

When I drop a PDF in document intelligence studio, the layout model detects more sectionHeadings and titles than it does through the python API.

Is there anyone who knows why these disparities exist ?

I try to use a different model, but prebuilt-document has the same problem.

Upvotes: 0

Views: 146

Answers (1)

alex jo
alex jo

Reputation: 1

I was using the wrong API which was document analyze instead of document intelligence

Upvotes: 0

Related Questions