使用查询访问 Wordnet

发布于 2024-09-30 15:58:37 字数 1536 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2024-10-07 15:58:37

您可以从 Talis 托管的以下 SPARQL 端点直接对 Wordnet 数据库运行 SPARQL 查询:

其中加载了 Wordnet 的 RDF 版本。另请参阅RDF 中的 Wordnet 3.0。拥有 Wordnet 数据的 RDF 版本允许您直接使用 SPARQL 来查询它。我刚刚对其进行了一些测试,您可以运行类似的命令:

SELECT * WHERE { 
  ?s <http://www.w3.org/2006/03/wn/wn20/schema/hyponymOf> ?o
}
LIMIT 10

此查询将获得一小部分下位词样本。如果您想从这里获取并学习 SPARQL,我建议您从 Jena/ARQ SPARQL 教程开始

编辑

在另一个问题中,探索性 SPARQL 查询?,您可以了解如何运行探索性 SPARQL 查询来调查SPARQL 端点背后的数据集结构。

You can run directly SPARQL queries over the Wordnet database from the following SPARQL the endpoint hosted by Talis at:

There's an RDF version of Wordnet loaded in it. Also see Wordnet 3.0 in RDF. Having an RDF version of the Wordnet data allows you to directly use SPARQL to query it. I have just tested it a bit and you can run something like:

SELECT * WHERE { 
  ?s <http://www.w3.org/2006/03/wn/wn20/schema/hyponymOf> ?o
}
LIMIT 10

This query would get a small sample of hyponyms. If you want to get it from here and learn SPARQL I recommend you as a start the Jena/ARQ SPARQL Tutorial.

Edit

In another question, exploratory SPARQL queries?, you can see how to run Exploratory SPARQL queries to investigate the structure of a dataset behind a SPARQL endpoint.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文