我正在尝试使用示例代码使用 v3 preview构建表单识别器自定义模型:
Uri trainingFileUri = new Uri(sasToken);
var client = new DocumentModelAdministrationClient(
new Uri(endpoint), new
AzureKeyCredential(apiKey));
BuildModelOperation operation = await client.StartBuildModelAsync(trainingFileUri);
Response<DocumentModel> operationResponse = await operation.WaitForCompletionAsync();
sas 令牌用于包含 20 个 pdf 文件的 Blob 容器。当我运行时,我得到了错误
状态:200(正常)错误代码:InvalidRequest
附加信息:AdditionInformation:InvalidRequest:无效请求。
详细信息:ModelBuildError:无法构建模型:找不到任何 OCR 文件进行训练。
生的:
{ "code": "InvalidRequest", "message": "Invalid request.", "details": [ { "code": "ModelBuildError", "message": "Could not build the model: Can\u0027t find any OCR培训文件。” } ] }
SAS 令牌有读、写、列出等权限,所以我不知道为什么客户端找不到任何要训练的文档。有任何想法吗?