命名实体识别和命名实体解析之间的区别是什么?会喜欢一个实际的例子。
发布于 2011-12-22 01:18:40
命名实体识别是在运行文本中提取名称并对其进行分类。例如,给定(1)
John Terry to face criminal charges over alleged racist abuse一个NE识别器将输出
[PER John Terry] to face criminal charges over alleged racist abuseNE解析或规范化意味着找出名称引用的外部世界中的哪个实体。例如,在上面的示例中,输出将使用足球运动员John Terry的唯一标识符进行注释,如他的维基百科URL:
[https://en.wikipedia.org/wiki/John_Terry John Terry] to face criminal charges
over alleged racist abuse与之相对的,例如
https://en.wikipedia.org/wiki/John_Terry_%28actor%29
https://en.wikipedia.org/wiki/John_Terry_%28baseball%29或者其他任何约翰·特里的维基百科都知道。
https://stackoverflow.com/questions/8589005
复制相似问题