Python - 计算文本搜索相关性得分的库
我的想法是实现类似于MySQL MATCH / AGAINST关键字的执行。
你知道一个计算文本搜索相关性得分的Python库吗?
如果答案不令人满意,我将使用 Python 连接器连接 MySQL。
My idea is to achieve an execution similar to the MySQL MATCH / AGAINST keywords.
Do you know a python library that compute relevance score for text searches?
If not satisfying answers I am going to use a Python connector to MySQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 PyLucene http://lucene.apache.org/pylucene/
你可以找到更多示例和 lia 位于 http://svn.apache.org/viewvc /lucene/pylucene/trunk/samples/LuceneInAction/
Have a look at PyLucene http://lucene.apache.org/pylucene/
You can found more examples and lia at http://svn.apache.org/viewvc/lucene/pylucene/trunk/samples/LuceneInAction/