将 Wordnet 语义映射到 Verbnet
Mapping Wordnet Senses to Verbnet
上面第6页的link中,论文中提到做了映射
"The process of mapping VerbNet to WordNet is thus semi-automatic. We
first manually link all semantic constraints defined in VerbNet (there are 36
such constraints) to one or more nodes in the WordNet semantic hierarchy."
我正在尝试在 NLTK Python 上使用此映射与 Verbnet 和 Wordnet。此映射使用的代码是什么?
可以在 Rada Mihalcea 的页面上找到此映射:http://web.eecs.umich.edu/~mihalcea/downloads.html, the direct link: http://web.eecs.umich.edu/~mihalcea/downloads/FnWnVerbMap1.0.tar.gz
有以下代码:
- 动词网络:http://www.nltk.org/_modules/nltk/corpus/reader/verbnet.html
- 框架网:http://www.nltk.org/howto/framenet.html
- Wordnet:http://www.nltk.org/howto/wordnet.html
但是 NLTK 中没有读取映射的代码(至少现在还没有)。
上面第6页的link中,论文中提到做了映射
"The process of mapping VerbNet to WordNet is thus semi-automatic. We first manually link all semantic constraints defined in VerbNet (there are 36 such constraints) to one or more nodes in the WordNet semantic hierarchy."
我正在尝试在 NLTK Python 上使用此映射与 Verbnet 和 Wordnet。此映射使用的代码是什么?
可以在 Rada Mihalcea 的页面上找到此映射:http://web.eecs.umich.edu/~mihalcea/downloads.html, the direct link: http://web.eecs.umich.edu/~mihalcea/downloads/FnWnVerbMap1.0.tar.gz
有以下代码:
- 动词网络:http://www.nltk.org/_modules/nltk/corpus/reader/verbnet.html
- 框架网:http://www.nltk.org/howto/framenet.html
- Wordnet:http://www.nltk.org/howto/wordnet.html
但是 NLTK 中没有读取映射的代码(至少现在还没有)。