- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 BabelNet restful API 来检索页面上光泽下方和“探索网络”按钮上方的信息。例如在 page for GPS我希望能够提取这些属性值对:
IS A navigational system • sat nav • avionics
HAS PART USA-242 • USA-248
COUNTRY United States
COUNTRY OF ORIGIN United States
OPERATOR Air Force Space Command
USE location • place
getOutgoingEdges
查询,尽管其中的某些部分是反复试验,因为我没有发现文档像人们希望的那样有用。但这是我得到的(现在只是出于调试目的将它们打印出来),使用 python 请求和 BeautifulSoup:
import requests
from bs4 import BeautifulSoup
import json
proxy_dict = {} # set according to system needs
nextId = "bn:00040680n" # the GPS page
r = requests.get('https://babelnet.io/v5/getOutgoingEdges?id='+nextId+'&key=<mykey>', proxies = proxy_dict)
idsoup = BeautifulSoup(r.text, "lxml")
jsonedgesitem = json.loads(idsoup.html.body.p.string)
for relation in jsonedgesitem:
lang = relation.get("language")
if lang == "EN" or lang == "MUL":
if "pointer" in relation:
shortName = relation["pointer"].get("shortName")
if shortName != "related" and shortName != "gloss-related":
print(json.dumps(relation,indent=2))
{
"pointer": {
"name": "operator",
"fSymbol": "wd92",
"relationGroup": "OTHER",
"shortName": "operator",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00001859n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "use",
"fSymbol": "wd148",
"relationGroup": "OTHER",
"shortName": "use",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00051760n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "use",
"fSymbol": "wd148",
"relationGroup": "OTHER",
"shortName": "use",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00062699n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "Hypernym",
"fSymbol": "@",
"relationGroup": "HYPERNYM",
"shortName": "is-a",
"isAutomatic": false
},
"language": "EN",
"target": "bn:00057078n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "has_part",
"fSymbol": "wd76",
"relationGroup": "HOLONYM",
"shortName": "has_part",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:15441159n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "has_part",
"fSymbol": "wd76",
"relationGroup": "HOLONYM",
"shortName": "has_part",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:16971426n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "country_of_origin",
"fSymbol": "wd35",
"relationGroup": "OTHER",
"shortName": "country_of_origin",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00003341n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "subclass_of",
"fSymbol": "wd21",
"relationGroup": "HYPERNYM",
"shortName": "subclass_of",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00007477n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "country",
"fSymbol": "wd3",
"relationGroup": "OTHER",
"shortName": "country",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00003341n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "Hyponym",
"fSymbol": "~@w",
"relationGroup": "HYPONYM",
"shortName": "has-kind",
"isAutomatic": true
},
"language": "EN",
"target": "bn:01177672n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "Hyponym",
"fSymbol": "~@w",
"relationGroup": "HYPONYM",
"shortName": "has-kind",
"isAutomatic": true
},
"language": "EN",
"target": "bn:02122452n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "Hyponym",
"fSymbol": "~@w",
"relationGroup": "HYPONYM",
"shortName": "has-kind",
"isAutomatic": true
},
"language": "EN",
"target": "bn:03088008n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "Hypernym",
"fSymbol": "@wd",
"relationGroup": "HYPERNYM",
"shortName": "is-a",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00732900n",
"normalizedWeight": 0.0,
"weight": 0.0
}
{
"pointer": {
"name": "Hypernym",
"fSymbol": "@w",
"relationGroup": "HYPERNYM",
"shortName": "is-a",
"isAutomatic": true
},
"language": "EN",
"target": "bn:00732900n",
"normalizedWeight": 0.0,
"weight": 0.0
}
最佳答案
请注意,我可以在评论部分列出所有这些,所以选择写一个答案,我只是想回答下面的问题,因为它以粗体突出显示。
Where it is documented what kinds of relations can be included here? In particular, is there a meaningful difference between the Hypernym "is-a" and Hypernym "subclass-of" types of relation? Where are the fSymbol values documented?
A complete list of fSymbols can be referenced in pointer.txt file BabelNet-API-4.0\resources\jlt folder. I wouldn't call them being fully documented but that's where you can find them and I haven't found this list to be provided anywhere on BabeNet website. Also, I had to cut short the list below as I do not want overload this thread. You would have to download the api folder from here and extract it.
%Relation Types extrated by Wikidata dump 2014 september
wd1 instance_of instance_of HYPERNYM
wd2 stated_in stated_in
wd3 country country
wd4 sex_or_gender sex_or_gender
wd5 located_in_the_administrative_territorial_entity located_in_the_administrative_territorial_entity
wd6 taxon_rank taxon_rank
wd7 parent_taxon parent_taxon
wd8 occupation occupation
wd9 country_of_citizenship country_of_citizenship
wd10 given_name given_name
wd11 contains_administrative_territorial_entity contains_administrative_territorial_entity
wd12 place_of_birth place_of_birth
wd13 cast_member cast_member
wd14 place_of_death place_of_death
wd15 member_of_sports_team member_of_sports_team
wd16 award_received award_received
wd17 educated_at educated_at
wd18 type_of_administrative_territorial_entity type_of_administrative_territorial_entity
wd19 shares_border_with shares_border_with
wd20 position_held position_held
wd21 subclass_of subclass_of HYPERNYM
wd22 genre genre
wd23 member_of_political_party member_of_political_party
wd24 follows follows
wd25 followed_by followed_by
**** there are more please refer to the file. ****
Note I couldn't find any specific document but the BabelPointer.java lists all pointers and their mappings to RelationGroup (HYPERNYM, HYPONYM, MERONYM, HOLONYM, OTHER), there are is-a, has-kind, has-part, part-of, derived-from relation type that are commonly used with others
public static final BabelPointer SEMANTICALLY_RELATED = new BabelPointer("r", "Semantically related form", "related");
public static final BabelPointer GLOSS_MONOSEMOUS = new BabelPointer("gmono", "Gloss related form (monosemous)", "gloss-related");
public static final BabelPointer GLOSS_DISAMBIGUATED = new BabelPointer("gdis", "Gloss related form (disambiguated)", "gloss-related");
public static final BabelPointer ALSO_SEE = new BabelPointer("^", "Also See", "also-see");
public static final BabelPointer ANTONYM = new BabelPointer("!", "Antonym", "antonym");
public static final BabelPointer ATTRIBUTE = new BabelPointer("=", "Attribute", "attrib");
public static final BabelPointer CAUSE = new BabelPointer(">", "Cause", "cause");
public static final BabelPointer DERIVATIONALLY_RELATED = new BabelPointer("+", "Derivationally related form", "deriv");
public static final BabelPointer ENTAILMENT = new BabelPointer("*", "Entailment", "entails");
public static final BabelPointer HYPERNYM = new BabelPointer("@", "Hypernym", "is-a", RelationGroup.HYPERNYM);
public static final BabelPointer HYPERNYM_INSTANCE = new BabelPointer("@i", "Instance hypernym", "is-a", RelationGroup.HYPERNYM);
public static final BabelPointer HYPONYM = new BabelPointer("~", "Hyponym", "has-kind", RelationGroup.HYPONYM);
public static final BabelPointer HYPONYM_INSTANCE = new BabelPointer("~i", "Instance hyponym", "has-kind", RelationGroup.HYPONYM);
public static final BabelPointer HOLONYM_MEMBER = new BabelPointer("#m", "Member holonym", "has-part", RelationGroup.HOLONYM);
public static final BabelPointer HOLONYM_SUBSTANCE = new BabelPointer("#s", "Substance holonym", "has-part", RelationGroup.HOLONYM);
public static final BabelPointer HOLONYM_PART = new BabelPointer("#p", "Part holonym", "has-part", RelationGroup.HOLONYM);
public static final BabelPointer MERONYM_MEMBER = new BabelPointer("%m", "Member meronym", "part-of", RelationGroup.MERONYM);
public static final BabelPointer MERONYM_SUBSTANCE = new BabelPointer("%s", "Substance meronym", "part-of", RelationGroup.MERONYM);
public static final BabelPointer MERONYM_PART = new BabelPointer("%p", "Part meronym", "part-of", RelationGroup.MERONYM);
public static final BabelPointer PARTICIPLE = new BabelPointer("<", "Participle", "participle");
public static final BabelPointer PERTAINYM = new BabelPointer("\\", "Pertainym (pertains to nouns)", "pertains-to");
public static final BabelPointer REGION = new BabelPointer(";r", "Domain of synset - REGION", "domain");
public static final BabelPointer REGION_MEMBER = new BabelPointer("-r", "Member of this domain - REGION", "domain");
public static final BabelPointer SIMILAR_TO = new BabelPointer("&", "Similar To", "sim");
public static final BabelPointer TOPIC = new BabelPointer(";c", "Domain of synset - TOPIC", "topic");
public static final BabelPointer TOPIC_MEMBER = new BabelPointer("-c", "Member of this domain - TOPIC", "topic");
public static final BabelPointer USAGE = new BabelPointer(";u", "Domain of synset - USAGE", "usage");
public static final BabelPointer USAGE_MEMBER = new BabelPointer("-u", "Member of this domain - USAGE", "usage");
public static final BabelPointer VERB_GROUP = new BabelPointer("$", "Verb Group", "verb_group");
public static final BabelPointer WIBI_HYPERNYM = new BabelPointer("@w", "Hypernym", "is-a", RelationGroup.HYPERNYM, true);
public static final BabelPointer WIKIDATA_HYPERNYM = new BabelPointer("@wd", "Hypernym", "is-a", RelationGroup.HYPERNYM);
public static final BabelPointer WIKIDATA_MERONYM = new BabelPointer("%wdm", "Part meronym", "part-of", RelationGroup.MERONYM);
public static final BabelPointer WIBI_HYPONYM = new BabelPointer("~@w", "Hyponym", "has-kind", RelationGroup.HYPONYM, true);
public static final BabelPointer WIKIDATA_HYPONYM_INSTANCE = new BabelPointer("~wd", "Hyponym", "has-kind", RelationGroup.HYPONYM);
public static final BabelPointer WIKIDATA_HYPONYM = new BabelPointer("~wds", "Hyponym", "has-kind", RelationGroup.HYPONYM);
public static final BabelPointer ANY_HYPERNYM = new BabelPointer("ahpe", "Any Hypernym", "is-a", RelationGroup.HYPERNYM);
public static final BabelPointer ANY_MERONYM = new BabelPointer("am", "Any Meronym", "part-of", RelationGroup.MERONYM);
public static final BabelPointer ANY_HOLONYM = new BabelPointer("aho", "Any Holonym", "has-part", RelationGroup.HOLONYM);
public static final BabelPointer ANY_HYPONYM = new BabelPointer("ahpo", "Any Hyponym", "has-kind", RelationGroup.HYPONYM);
Now the pointer below refers to the avionics referring GPS bn:00040680n is a sub class of avionics bn:00007477n and generalizig GPS is-a Satellite navigation bn:00732900n and is-a system bn:00057078n
{
"pointer": {
"name": "subclass_of",
"fSymbol": "wd21",
"relationGroup": "HYPERNYM",
"shortName": "subclass_of",
"isAutomatic": false
},
"language": "MUL",
"target": "bn:00007477n",
"normalizedWeight": 0.0,
"weight": 0.0
}
is-a: is used to incorporating something under a more general category.
subclass of: A Subclass, is a "derived class", heir class, or child class of a superclass.
关于rest - BabelNet API 网络信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49367386/
这与 Payubiz payment gateway sdk 关系不大一体化。但是,主要问题与构建项目有关。 每当我们尝试在模拟器上运行应用程序时。我们得到以下失败: What went wrong:
我有一个现有的应用程序,其中包含在同一主机上运行的 4 个 docker 容器。它们已使用 link 命令链接在一起。 然而,在 docker 升级后,link 行为已被弃用,并且似乎有所改变。我们现
在 Internet 模型中有四层:链路 -> 网络 -> 传输 -> 应用程序。 我真的不知道网络层和传输层之间的区别。当我读到: Transport layer: include congesti
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
前言: 生活中,我们在上网时,打开一个网页,就可以看到网址,如下: https😕/xhuahua.blog.csdn.net/ 访问网站使用的协议类型:https(基于 http 实现的,只不过在
网络 避免网络问题降低Hadoop和HBase性能的最重要因素可能是所使用的交换硬件,在项目范围的早期做出的决策可能会导致群集大小增加一倍或三倍(或更多)时出现重大问题。 需要考虑的重要事项:
网络 网络峰值 如果您看到定期的网络峰值,您可能需要检查compactionQueues以查看主要压缩是否正在发生。 有关管理压缩的更多信息,请参阅管理压缩部分的内容。 Loopback IP
Pure Data 有一个 loadbang 组件,它按照它说的做:当图形开始运行时发送一个 bang。 NoFlo 的 core/Kick 在其 IN 输入被击中之前不会发送其数据,并且您无法在 n
我有一台 Linux 构建机器,我也安装了 minikube。在 minikube 实例中,我安装了 artifactory,我将使用它来存储各种构建工件 我现在希望能够在我的开发机器上做一些工作(这
我想知道每个视频需要多少种不同的格式才能支持所有主要设备? 在我考虑的主要设备中:安卓手机 + iPhone + iPad . 对具有不同比特率的视频进行编码也是一种好习惯吗? 那里有太多相互矛盾的信
我有一个使用 firebase 的 Flutter Web 应用程序,我有两个 firebase 项目(dev 和 prod)。 我想为这个项目设置 Flavors(只是网络没有移动)。 在移动端,我
我正在读这篇文章Ars article关于密码安全,它提到有一些网站“在传输之前对密码进行哈希处理”? 现在,假设这不使用 SSL 连接 (HTTPS),a.这真的安全吗? b.如果是的话,你会如何在
我试图了解以下之间的关系: eth0在主机上;和 docker0桥;和 eth0每个容器上的接口(interface) 据我了解,Docker: 创建一个 docker0桥接,然后为其分配一个与主机上
我需要编写一个java程序,通过网络将对象发送到客户端程序。问题是一些需要发送的对象是不可序列化的。如何最好地解决这个问题? 最佳答案 发送在客户端重建对象所需的数据。 关于java - 不可序列化对
所以我最近关注了this有关用 Java 制作基本聊天室的教程。它使用多线程,是一个“面向连接”的服务器。我想知道如何使用相同的 Sockets 和 ServerSockets 来发送对象的 3d 位
我想制作一个系统,其中java客户端程序将图像发送到中央服务器。中央服务器保存它们并运行使用这些图像的网站。 我应该如何发送图像以及如何接收它们?我可以使用同一个网络服务器来接收和显示网站吗? 最佳答
我正在尝试设置我的 rails 4 应用程序,以便它发送电子邮件。有谁知道我为什么会得到: Net::SMTPAuthenticationError 534-5.7.9 Application-spe
我正在尝试编写一个简单的客户端-服务器程序,它将客户端计算机连接到服务器计算机。 到目前为止,我的代码在本地主机上运行良好,但是当我将客户端代码中的 IP 地址替换为服务器计算机的本地 IP 地址时,
我需要在服务器上并行启动多个端口,并且所有服务器套接字都应在 socket.accept() 上阻塞。 同一个线程需要启动客户端套接字(许多)来连接到特定的 ServerSocket。 这能实现吗?
我的工作执行了大约 10000 次以下任务: 1) HTTP 请求(1 秒) 2)数据转换(0.3秒) 3)数据库插入(0.7秒) 每次迭代的总时间约为 2 秒,分布如上所述。 我想做多任务处理,但我
我是一名优秀的程序员,十分优秀!