获取名词和列表来自 WordNet 的形容词
我对 Wordnet 还很陌生,所以说实话,我觉得它有点令人困惑。只是想知道如何从 Wordnet 数据库生成完整的名词列表和完整的形容词列表?
谢谢
I am pretty new to Wordnet and so finding it a little confusing to be honest. Just wondering how I am able to generate a full list of nouns and a full list of adjectives from the Wordnet database ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 MySQL 版本的 Wordnet 3.0,则可以使用以下查询:
select lemma from Words left join senses on Words.wordid = senses.wordid left join synsets on senses.synsetid = synsets.synsetid where pos = 'n'
并将形容词的“n”替换为“a”。
史蒂夫
If you're using the MySQL version of Wordnet 3.0 you can use the following query:
select lemma from words left join senses on words.wordid = senses.wordid left join synsets on senses.synsetid = synsets.synsetid where pos = 'n'
And replace 'n' with 'a' for the adjectives.
Steve