WordNet 获取 Lexicographer 文件的词表
WordNet Get Wordlist Of Lexicographer Files
我想使用 wordnet 获取与食物相关的名词列表。所以我搜索了 wordnet 主页,找到了一个 lexnames 列表和相关的文件号 here.
网页上有这一行:
13 noun.food nouns denoting foods and drinks
我在哪里可以下载相关文件,有没有办法在 wordnet
python 库的帮助下获取 "food nouns" 的列表?
Where can I download the associated files
下载 the whole of Wordnet(如果您向下滚动该页面,您会看到有一个部分可以获取 "WordNet 3.1 DATABASE FILES ONLY")
查看 dict/dbfiles,您会看到其中一个文件是 noun.food,269KB。 (相当human-readable。)
is there a way to get the list of "food nouns"
搜索 "food" 同义词集,然后获取所有直接和间接下义词。
我想使用 wordnet 获取与食物相关的名词列表。所以我搜索了 wordnet 主页,找到了一个 lexnames 列表和相关的文件号 here.
网页上有这一行:
13 noun.food nouns denoting foods and drinks
我在哪里可以下载相关文件,有没有办法在 wordnet
python 库的帮助下获取 "food nouns" 的列表?
Where can I download the associated files
下载 the whole of Wordnet(如果您向下滚动该页面,您会看到有一个部分可以获取 "WordNet 3.1 DATABASE FILES ONLY")
查看 dict/dbfiles,您会看到其中一个文件是 noun.food,269KB。 (相当human-readable。)
is there a way to get the list of "food nouns"
搜索 "food" 同义词集,然后获取所有直接和间接下义词。