用于对关键字进行分类的 Python 包
我正在寻找一个用于对关键字进行分类的 python 包。即我想输入棒球并获得“运动和户外”。有什么建议吗?
I am looking for a python package for categorizing keywords. I.e. I want to input Baseball and get "Sports and Outdoors". Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您最好的选择可能是自然语言工具包。特别是 ntlk.corpus.wordnet
但您可能想阅读一些理论,因此请花一些时间阅读这本书。
http://www.nltk.org/book
Your best bet is probably the natural language toolkit.In particular ntlk.corpus.wordnet
But you will probably want to read up on some theory so spend some time with the book.
http://www.nltk.org/book
我不知道有任何对关键字进行分类的 python 库,但这里有一个简单的技巧/解决方法,可以让您的生活变得轻松。正如@gecco 评论的那样,您应该使用单词和类别之间的映射。为了避免对所有这些内容进行硬编码,请使用像 this 这样的 API 来填充这样的字典。
I am not aware of any python library that categorizes keywords, but here is a simple hack/workaround to make your life easy. As @gecco commented, you should use a mapping between words and categories. To avoid hardcoding all of them, use an API like this to fill such a dictionary.