Reputation: 1
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
Reputation: 1
I was using the wrong API which was document analyze instead of document intelligence
Upvotes: 0