0

我使用表单识别器 Web 界面在一些 PDF(5 个自定义标签)上训练了一个自定义模型。

现在我正在尝试使用该azure-ai-formrecognizer包获得新 PDF 的识别结果:

form_recognizer_client = FormRecognizerClient(endpoint, AzureKeyCredential(key))

poller = form_recognizer_client.begin_recognize_custom_forms_from_url(model_id=model_id, form_url=form_url, logging_enable=True)
result = poller.result()

这曾经与包版本 3.1.0b2 和在 v2.1.preview.2 中训练的模型一起工作得很好。现在我有一个在 v2.1.preview.3 中训练的新自定义模型,突然轮询器的响应notStarted持续了几分钟并且没有完成。

Response status: 200
Response headers:
    'Content-Length': '109'
    'Content-Type': 'application/json; charset=utf-8'
    'x-envoy-upstream-service-time': '40'
    'apim-request-id': '30511eb2-ce10-4df0-b9ca-20e0a5f430ef'
    'Strict-Transport-Security': 'max-age=31536000; includeSubDomains; preload'
    'x-content-type-options': 'nosniff'
    'Date': 'Mon, 03 May 2021 16:26:51 GMT'
Response content:
{"status":"notStarted","createdDateTime":"2021-05-03T16:26:46Z","lastUpdatedDateTime":"2021-05-03T16:26:51Z"}

对于较旧的模型和不同的 API 版本,请求有时会完成,有时不会。我找不到任何可重现的模式。

4

1 回答 1

0

它通常通过在 POST 操作成功后添加 5 或 10 秒的时间延迟来工作

于 2021-10-29T07:00:35.733 回答