关键信息提取中的文本识别结果 #14847
关键信息提取中的文本识别结果
#14847
Replies: 1 comment
-
在 PaddleOCR 进行文本识别后,你可以获取每个文本的置信度(confidence score)。具体方法如下: 1. 修改推理代码PaddleOCR 的文本识别通常返回包含文本内容和置信度的结果。你可以打印 根据官方文档和示例,OCR 结果通常会以如下格式返回: [
[text_1, confidence_1],
[text_2, confidence_2],
...
] 你可以在推理代码中修改 print("识别文本:", text, "置信度:", confidence) 2. 使用
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
请问我该如何得到文本识别步骤最后输出的每个文本的置信度?
Beta Was this translation helpful? Give feedback.
All reactions