README.md
- all three BM25 algorithms from rank_bm25 are implemented ( BM25Okapi, BM25L, BM25Plus )
- an optimized Python implementation is available, see BM25opt, which runs 30-40 x faster than rank_bm25
- tokenization options, stopwords
- bm25scoressum() temp table?
The author is not a Postgres / PL/pgSQL expert, gladly accepts optimizations or constructive criticism.
- download and execute plpgsql_bm25.sql to load the functions, e.g.
wget https://raw.githubusercontent.com/jankovicsandras/plpgsql_bm25/refs/heads/main/plpgsql_bm25.sql psql -f plpgsql_bm25.sql
- then
SELECT bm25createindex( tablename, columnname ); /* tablename and columnname are TEXT types */ SELECT * FROM bm25topk( tablename, columnname, question, k ); /* question is TEXT, k is INTEGER */
BM25Okapi is the default algoritm. If you would like to use BM25L or BM25Plus, then the algo
parameter must be specified, 'l'
is BM25L and 'plus'
is BM25Plus, e.g. :
SELECT bm25createindex( tablename, columnname, algo=>'plus' ); /* tablename and columnname are TEXT types */
SELECT * FROM bm25topk( tablename, columnname, question, k, algo=>'plus' ); /* question is TEXT, k is INTEGER */
Calling these from Python with a simple psycopg2 helper:
# it is assumed that 'mytable' exists in the Postgres DB and has a 'mycolumn' (type TEXT)
tablename = 'mytable'
columnname = 'mycolumn'
p_algo = 'l' # BM25L algoritm
k = 5 # top k results
q = 'this is my question'
msq( 'SELECT bm25createindex( \''+tablename+'\', \''+columnname+'\', algo=>\''+p_algo+'\' );' )
msq( 'SELECT * FROM bm25topk( \''+tablename+'\', \''+columnname+'\', \''+q.replace("'","\'\'")+'\', '+str(k)+', algo=>\''+p_algo+'\' );' )
bm25createindex(tablename TEXT, columnname TEXT, algo TEXT DEFAULT '') RETURNS VOID
- This creates the BM25 index by creating these new tables:
docstname TEXT := tablename || '_' || columnname || '_bm25i_docs' || algo; wordstname TEXT := tablename || '_' || columnname || '_bm25i_words' || algo;
- The index creation is a costy operation, but required after every change in the corpus (the original texts in tablename->columnname).
algo
values:''
is BM25Okapi (default),'l'
is BM25L,'plus'
is BM25Plus.
bm25topk(tablename TEXT, columnname TEXT, mquery TEXT, k INT, algo TEXT DEFAULT '') RETURNS TABLE(id INTEGER, score double precision, doc TEXT)
- This is the search function, which returns the top
k
documents and their scores that are most similar tomquery
(the question). - WARNING: the
id
column in the result table must not be used, instead thedoc
must be matched with (tablename->columnname) in the original table to get the record / ordering. Theid
column and the ordering ofdoc
s in the result table is not guaranteed to be the same as the ordering as the ordering of records in the original table.
bm25simpletokenize(txt TEXT) RETURNS TEXT[]
- The default tokenizer function. If you need another / custom tokenizer, then you need to overwrite this (DROP FUNCTION... CREATE OR REPLACE FUNCTION...).
- https://en.wikipedia.org/wiki/Okapi_BM25
- https://en.wikipedia.org/wiki/PL/pgSQL
- https://github.com/dorianbrown/rank_bm25
- https://github.com/jankovicsandras/bm25opt
- TLDR:
- BM25Okapi is a popular search algorithm.
- Index building: Initially, there's a list of texts or documents called the corpus. Each document will be split to words (or tokens) with the tokenization function (the simplest is split on whitespace characters). The algorithm then builds a word-score-map
wsmap
, where every word in the corpus is scored for every document based on their frequencies, ca. how special a word is in the corpus and how frequent in the current document. - Search: the question text (or query string) will be tokenized, then the search function looks up the words from
wsmap
and sums the scores for each document; the result is a list of scores, one for each document. The highest scoring document is the best match. The search function sorts the scores-documentIDs in descending order. - Adding a new document to the corpus or changing one requires rebuilding the whole BM25 index (
wsmap
), because of how the algorithm works.
plpgsql_bm25.sql
: PL/pgSQL functions for BM25 search
plpgsql_bm25_dev_20241103.ipynb
: Jupyter notebook where I develop this.plpgsql_bm25_comparison_with_paradedb_pg_search.ipynb
: Jupyter notebook with comparative testing of plpgsql_bm25.sql, ParadeDB pg_search, rank_bm25 and BM25opt
Postgres has already Full Text Search and there are several extensions that implement BM25. But Full Text Search is not the same as BM25. The BM25 extensions are written in Rust, which might not be available / practical, especially in hosted environments. See Alternatives section for more info.
-
Postgres Full Text Search
-
Rust based BM25
-
Postgres similarity of text using trigram matching
-
NOTE: this is useful for fuzzy string matching, like spelling correction, but not query->document search solution itself. The differing document and query text lengths will result very small relative trigram frequencies and incorrect/missing matching.
The Unlicense / PUBLIC DOMAIN
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to http://unlicense.org