将 WordNet 数据库解析为 SQL?

发布于 2024-11-05 10:25:49 字数 258 浏览 0 评论 0原文

我想要 SQL 格式的 WordNet 数据库,所以我正在考虑尝试编写一个 < href="http://wordnet.princeton.edu/wordnet/man/wndb.5WN.html" rel="nofollow">WordNet 文件的解析器。然而,在开始之前我想知道是否有任何现有的解析器或者是否有人已经创建了 SQL 版本的数据库?

I would like to have the WordNet database in SQL format so I'm thinking about trying to write a parser for the WordNet files. However, before I get started I was wondering if there are any existing parsers or if someone has already created a SQL version of the database?

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

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

发布评论

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

评论(2

狼性发作 2024-11-12 10:25:49

您可以使用以下解析器。

Perl:Wordnet::QueryData

Python [NLTK]:http://nltk.googlecode.com/svn/trunk/doc/book/ch02。 html#ex-car1

>>> from nltk.corpus import wordnet as wn
>>> wn.synsets('motorcar')
[Synset('car.n.01')]

You can use the following parsers.

Perl: Wordnet::QueryData

Python [NLTK] : http://nltk.googlecode.com/svn/trunk/doc/book/ch02.html#ex-car1

>>> from nltk.corpus import wordnet as wn
>>> wn.synsets('motorcar')
[Synset('car.n.01')]
落在眉间の轻吻 2024-11-12 10:25:49

查看 http://wnsqlbuilder.sourceforge.net/ (来自 WordNet 站点上的相关项目)

check out http://wnsqlbuilder.sourceforge.net/ (from Related Projects on the WordNet site)

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