我希望SQL格式为WordNet database,所以我正在考虑尝试编写parser for the WordNet files。但是,在我开始之前,我想知道是否有任何现有的解析器,或者是否有人已经创建了数据库的SQL版本?
答案 0 :(得分:6)
您可以使用以下解析器。
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')]
答案 1 :(得分:3)
查看http://wnsqlbuilder.sourceforge.net/(来自WordNet网站上的相关项目)