命名实体识别和解析之间的区别?
命名实体识别和命名实体解析有什么区别?希望有一个实际的例子。
What is the difference between named entity recognition and named entity resolution? Would appreciate a practical example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
命名实体识别是在运行文本中提取名称并对它们进行分类。例如,给定 (1)
NE 识别器将输出
NE解析或归一化意味着找出名称所指的外部世界中的哪个实体。例如,在上面的示例中,输出将用足球运动员约翰·特里(John Terry)的唯一标识符进行注释,例如他的维基百科URL:,
而不是例如
或维基百科知道的任何其他约翰·特里(John Terry)。
Named entity recognition is picking up the names and classifying them in running text. E.g., given (1)
an NE recognizer will output
NE resolution or normalization means finding out which entity in the outside world a name refers to. E.g., in the above example, the output would be annotated with a unique identifier for the footballer John Terry, like his Wikipedia URL:
as opposed to, e.g.
or any of the other John Terry's the Wikipedia knows.