hkboy
hkboy

Reputation: 3

MS Form Recognizer - Unable to find my model after training. Did I miss any step?

Referring to the guide in link below

https://learn.microsoft.com/en-us/azure/cognitive-services/form-recognizer/quickstarts/label-tool

I have been able to upload my documents and have my model successfully trained (with model id) model successfully trained

But when I try to call the service via REST API, I am unable to find my model.

https://{endpoint}/formrecognizer/v1.0-preview/custom/models

Content-Type: application/json; charset=utf-8

{
  "models": []
}

Am I missing any step? Thank you in advance :)

Upvotes: 0

Views: 438

Answers (1)

Neta
Neta

Reputation: 720

When calling the API you need to call the Form Recognizer v2.0 API to find your model - https://{endpoint}/formrecognizer/v2.0-preview/custom/models/{modelId}

Upvotes: 1

Related Questions