Python - 计算文本搜索相关性得分的库

发布于 2024-09-12 22:23:53 字数 123 浏览 4 评论 0原文

我的想法是实现类似于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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明明#如月 2024-09-19 22:23:53

看看 PyLucene http://lucene.apache.org/pylucene/

import os, sys, unittest, lucene
lucene.initVM()

baseDir = os.path.dirname(os.path.abspath(sys.argv[0]))
sys.path.append(baseDir)

import lia.searching.ScoreTest
from lucene import System

System.setProperty("index.dir", os.path.join(baseDir, 'index'))
unittest.main(lia.searching.ScoreTest)

你可以找到更多示例和 lia 位于 http://svn.apache.org/viewvc /lucene/pylucene/trunk/samples/LuceneInAction/

Have a look at PyLucene http://lucene.apache.org/pylucene/

import os, sys, unittest, lucene
lucene.initVM()

baseDir = os.path.dirname(os.path.abspath(sys.argv[0]))
sys.path.append(baseDir)

import lia.searching.ScoreTest
from lucene import System

System.setProperty("index.dir", os.path.join(baseDir, 'index'))
unittest.main(lia.searching.ScoreTest)

You can found more examples and lia at http://svn.apache.org/viewvc/lucene/pylucene/trunk/samples/LuceneInAction/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文