Building a full-text search engine in 150 lines of Python code (2021)
by jankovicsandras on 1/24/2025, 8:17:18 AM
This is a good intro to text search. Shameless plug: If you throw in a bit more, ca. 250 SLOC, you can have BM25 search: https://github.com/jankovicsandras/bm25opt
by cocodill on 1/24/2025, 6:32:47 AM
> return [token for token in tokens if token]
I love that kind of bullshit poetry.
This is a good intro to text search. Shameless plug: If you throw in a bit more, ca. 250 SLOC, you can have BM25 search: https://github.com/jankovicsandras/bm25opt