- 概述
- Document Understanding 流程
- 快速入门教程
- 框架组件
- ML 包
- 管道
- Document Manager
- OCR 服务
- 部署在 Automation Suite 中的 Document Understanding
- 在 AI Center 独立版中部署的 Document Understanding
- 深度学习
- 许可
- 参考
- UiPath.Abbyy.Activities
- UiPath.AbbyyEmbedded.Activities
- UiPath.DocumentUnderstanding.ML.Activities
- UiPath.DocumentUnderstanding.OCR.LocalServer.Activities
- UiPath.Intelligent OCR.Activities
- UiPath.OCR.Activities
- UiPath.OCR.Contracts
- UiPath.DocumentProcessing.Contracts
- UiPath.OmniPage.Activities
- UiPath.PDF.Activities
什么是基于关键字的分类器
The Keyword Based Classifier is a simple classifier that searches for repeating string sequences within a given file, in order to perform document classification.
该算法围绕文档标题的概念构建,前提是在带有标题的文档类型中,这些标题在文档中的显示方式变化较小。
将文件归入某一文档类型时,“基于关键字的分类器”:
- 会从学习数据中查找适用于分类文档类型的最佳匹配字符串或字符串集合。根据以下条件计算可信度:
- 与文档开头的匹配程度,
- 知识工作者确认匹配并在学习数据中强化匹配的次数。
- 报告得分最高的文档类型,以及基础匹配配置。
“基于关键字的分类器”可以处理单个字符串条目(一个被视为分类器正在使用的学习数据中一个条目的字符串),也可以处理包含多个字符串的条目(两个或多个字符串构成一个条目)。如果存在多个字符串,分类器将对每个字符串分别应用匹配算法,然后计算所识别匹配项可信度的简单平均值。
示例
下面我们举一个例子:
- 如果条目包含单个字符串,例如“this is my Match”,则“基于关键字的分类器”会搜索此字符串并将其定为潜在文档类型匹配项(根据字符串所属的文档类型)。
- 如果某个条目包含三个字符串,例如[“this is a Match”、“needs more evidence for filtering”、“yet another one”],则“基于关键字的分类器”会逐一搜索这三个字符串并进行评分,然后计算匹配可信度的简单平均值进行报告。
The keyword set can be defined within a line or by using multiple lines. When set within a line it identifies the given input, for example, if x,y, and z are listed as keywords, then the search is looking for x and y and z.
定义多行意味着搜索将查找第一行、第二行或第三行中列出的关键字,直到其覆盖所有行并确定最佳匹配项,从而通过从更多可用关键字中确定更多匹配项来提高置信度分数。
何时使用
在下列情况下,您应考虑使用此分类器:
- 您的文件包含一个文档类型,且每个文档仅包含一个文档类型(因此不需要拆分文件);
- 您的文件在文件的前三页中包含与文档类型相关的证据。
特殊要求
No special requirements in to the Keyword Based Classifier.
For more information on how to train a Classifier, check this page that describes the process of using the Manage Learning wizard.
了解详情
Learn more about Keyword Based Classifier, by following this link.