提取链接的实体
在某些情况下,相同的名称可能适用于多个实体。 例如,“Venus”一词的实例是指行星还是神话中的女神?
实体链接可用于通过引用知识库中的文章来区分同名的实体。 维基百科为文本分析服务提供了知识库。 根据文本中的实体上下文确定特定文章链接。
例如,“I saw Venus shining in the sky”与链接 https://en.wikipedia.org/wiki/Venus 相关联,而“Venus, the goddess of beauty”与 https://en.wikipedia.org/wiki/Venus_(mythology) 相关联。
与所有 Azure AI 语言服务函数一样,你可以提交一个或多个文档进行分析:
{
"kind": "EntityLinking",
"parameters": {
"modelVersion": "latest"
},
"analysisInput": {
"documents": [
{
"id": "1",
"language": "en",
"text": "I saw Venus shining in the sky"
}
]
}
}
响应包括文本中标识的实体以及指向相关文章的链接:
{
"kind": "EntityLinkingResults",
"results": {
"documents": [
{
"id": "1",
"entities": [
{
"bingId": "89253af3-5b63-e620-9227-f839138139f6",
"name": "Venus",
"matches": [
{
"text": "Venus",
"offset": 6,
"length": 5,
"confidenceScore": 0.01
}
],
"language": "en",
"id": "Venus",
"url": "https://en.wikipedia.org/wiki/Venus",
"dataSource": "Wikipedia"
}
],
"warnings": []
}
],
"errors": [],
"modelVersion": "2021-06-01"
}
}