gpt4 book ai didi

machine-learning - 远程监督: how to connect named entities to freebase (KB) relations

转载 作者:行者123 更新时间:2023-11-30 08:50:14 24 4
gpt4 key购买 nike

我正在尝试创建一个远程监督语料库。到目前为止,我已经组装了数据,并将其传递给 NER 系统,因此您可以看到下面的示例。

原始数据:

<p>
Myles Brand, the president of the National Collegiate Athletic Association, said in a telephone interview that he had not been approached about whether the N.C.A.A. might oversee a panel for the major bowl games similar to the one that chooses teams for the men's and women's basketball tournaments.
</p>

使用斯坦福 NER 处理:

<p>
<PERSON>Myles Brand</PERSON>, the president of the <ORGANIZATION>National Collegiate Athletic Association</ORGANIZATION>, said in a telephone interview that he had not been approached about whether the <ORGANIZATION>N.C.A.A.</ORGANIZATION> might oversee a panel for the major bowl games similar to the one that chooses teams for the men's and women's basketball tournaments.
</p>

现在这里有一个句子,其中包含个人Myles Brand 和组织National Collegiate Athletic Association

在 Freebase 中,我们有这两个实体共享 President 的关系纽带,如您所见:

Freebase 关系: Freebase Relationship

有人会认为下面的代码可以解决问题,based on this question ,但实际上并非如此,尽管从上图可以看出,Freebase 似乎在其语料库中维护了这两个实体之间的关系。这是我做错了什么吗?

我一直在 here 中使用它.

[{ 
"type" : "/type/link",
"source" : { "id" : "/en/myles_brand" },
"master_property" : null,
"target" : { "id" : "/en/national_collegiate_athletic_association" },
"target_value" : null
}]

此外,我有数千个实体对,我想我可以使用 Freebase Java API 编写一些简短的 java 程序来依次找出所有这些实体对的关系,有没有人有这样的程序的示例我可以看一下吗?

我真正想知道的是,一旦我建立了关系,将这些人与远程监督语料库关联起来的最佳方式是什么,当最终将它们组合在一起时,我对这一切看起来如何感到困惑。

最佳答案

您在 Freebase 方面遇到了一些问题。首先,迈尔斯·布兰德和NCAA之间的关系不是直接的,而是通过代表他的工作的节点来调解的。该节点包含雇主、雇员、职务、开始日期和结束日期的链接。其次,反射查询比标准 MQL 查询具有更强的方向性,在本例中,Myles Brand 是目标,而不是源。

此查询将向您显示指向 /business/employment_tenure 节点的链接:

[{
"type": "/type/link",
"source": {
"id": null
},
"master_property": null,
"target": {
"id": "/en/myles_brand"
}
}]

但需要对其进行扩展以处理您尝试查找的多跳关系(并提取标题)。

如果您有足够小的一组您感兴趣的关系,则可以直接测试这些关系,而不是使用反射来执行此操作。

例如,您可以使用以下方法测试雇佣关系(并获取头衔,如果有的话):

[{  
"/business/employment_tenure/person" : { "id" : "/en/myles_brand" },
"/business/employment_tenure/company" : { "id" : "/en/national_collegiate_athletic_association" },
"/business/employment_tenture/title": null
}]

关于machine-learning - 远程监督: how to connect named entities to freebase (KB) relations,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29599945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com