Faster Learned Sparse Retrieval with Block-Max Pruning
Project description
BMP - Block-Max Pruning
Faster Learned Sparse Retrieval with Block-Max Pruning
Installation
From PyPI:
pip install bmp
From source:
pip install maturin
maturin build -r
pip install target/wheels/*.whl
Usage
Index from CIFF
from bmp import ciff2bmp
ciff2bmp(ciff_file="/path/to/ciff", output="/path/to/index", bsize=32, compress_range=False)
Index with Python
from bmp import Indexer
indexer = Indexer('/path/to/index', bsize=32, compress_range=False)
indexer.add_document('doc1', {'a': 1, 'b': 5, 'c': 8}) # docid, vector
indexer.add_document('doc2', {'a': 2, 'c': 1, 'd': 8, 'f': 2})
# ... add more documents
indexer.finish()
Search
from bmp import search, Searcher
# Batch operation
results = search(index="/path/to/index", queries="/path/to/queries", k=10, alpha=1.0, beta=1.0)
# Returns: str (TREC run file)
# Query-by-query operation
searcher = Searcher("/path/to/index") # loads index into memory once
searcher.search({'tok1': 5.3, 'tok2': 1.1}, k=10, alpha=1.0, beta=1.0)
# Returns: Tuple[List[str], List[float]] (doc IDs, scores) for this query
Citation
If you use this code, please cite:
@inproceedings{BMP,
author = {Antonio Mallia and Torsten Suel and Nicola Tonellotto},
title = {Faster Learned Sparse Retrieval with Block-Max Pruning},
booktitle = {The 47th International ACM SIGIR Conference on Research and Development in Information Retrieval ({SIGIR})},
publisher = {ACM},
year = {2024}
}
License
Apache-2.0
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bmp-0.2.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: bmp-0.2.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 636.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05de2f3ef0f0ff6738aca3a99aaa2a7e8b892de069bb55a09e679a796d306de6
|
|
| MD5 |
f2c003dd8a9445651242655f89a8df50
|
|
| BLAKE2b-256 |
3d1081b20c4b02f23fed3f79d929b70287a6862158c32e3e17cd39b534aabab4
|
File details
Details for the file bmp-0.2.6-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 867.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca823e1af6950abf9053375ae353398544af5aae1a99c881e3cd3327ad6d06a8
|
|
| MD5 |
e72232d8a654bff80033fc52abe496aa
|
|
| BLAKE2b-256 |
43d8426d1bb5c44b6edeb9e90edf07797ab58831d9d9effa274a1dc43aaf2ae2
|
File details
Details for the file bmp-0.2.6-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 745.0 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
764fea5e8180558e44dcc14819a46a1715844b3cd6c735576dbcc24fd6ecfce4
|
|
| MD5 |
d59506df5b0d914d2549d928e741d248
|
|
| BLAKE2b-256 |
a4ca7ef3cb9b9ac8aa74da188566923d11a3d9de417a6d1814ee36c1be40ea8d
|
File details
Details for the file bmp-0.2.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: bmp-0.2.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 633.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be03d1b8f286c11fd3fc77b889c07ac2a30e9c1b7537e4c682937878d51d61ce
|
|
| MD5 |
a4d3ba3d64de2569a1ffa54b74b2f8c3
|
|
| BLAKE2b-256 |
798963882633bfcdd7ca5aec6ff7619e2a60d37cdea26e7b1d721d224e92defa
|
File details
Details for the file bmp-0.2.6-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 870.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
807199fd625032b121587f70356a45f6d06921af984506b0e174ea7369788ec4
|
|
| MD5 |
ec841c27bc590bcfb366c3b639914f82
|
|
| BLAKE2b-256 |
bd48ef0f4a0136299f31fdc074d96ebf2852b24dfcf8fa071733042b8c20fd20
|
File details
Details for the file bmp-0.2.6-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 745.4 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b75d43d55a435cbf82be18749505e2ee605d63313dd2ae7b6da5dd480b53b15c
|
|
| MD5 |
685670b6ad82ac8aca11fd72ec4f17fb
|
|
| BLAKE2b-256 |
cab335c87c22f7d3ad2a1525f89ee6cb909439183cd9d967f8d2ca918de2cf57
|
File details
Details for the file bmp-0.2.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: bmp-0.2.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 636.5 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ec36b8b739a418a975747b92280e9c39489efc0732a00b55d0fb2e116a7453
|
|
| MD5 |
132fc63c7e94a12f2aba6e6fc7bdd87c
|
|
| BLAKE2b-256 |
89c2e221328eeeaccf85940dce4b36560c855a95ee487af100eacb6f44b494df
|
File details
Details for the file bmp-0.2.6-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 858.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
766dc2527c47e6aa0fba3e703090d0d415826b220aafb067e3ef71d11360ffa9
|
|
| MD5 |
c86ca85d92268f410204e0bdc2e51d97
|
|
| BLAKE2b-256 |
32e79a82ea1e571b07213474a81c947e44b16f2f78063ae01b8f996e180c59af
|
File details
Details for the file bmp-0.2.6-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 745.5 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67e769392bce530ac1a5895d02e6ed9f6c8cc750c58b2b72d56df44b583f7cc9
|
|
| MD5 |
059b3e44f211ed56c3e994f7326d0e94
|
|
| BLAKE2b-256 |
21b7e21d17439446f4caf9ddd5cfc3a3ac8825ee67e66591582c47b8e0039c14
|
File details
Details for the file bmp-0.2.6-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: bmp-0.2.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 635.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8639d1ce6ec6738b9cfdb0a63da5bfac49ef626549419f5272ba55daf711c48e
|
|
| MD5 |
4ff80d2967b17fd35a2f2cff21c4d800
|
|
| BLAKE2b-256 |
e185f94a67b240009cb5bf49fae2dc064299d82b0762782a814a3e50ffbe8e86
|
File details
Details for the file bmp-0.2.6-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 858.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
350414aa64370eb92dc356ced73ca0d076224bc5b4d5c8f29e58300ac5aaa753
|
|
| MD5 |
6267cb5c3abd14dba64793f77b74a6d0
|
|
| BLAKE2b-256 |
a3f5b1995f2ea7af9804cdca53843f0d918bb06ebc644e7208069e4d2f68c59a
|
File details
Details for the file bmp-0.2.6-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 745.8 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1dfdc2835055e418034690941cccfabb0fbb2ec7b34babfea4db5604e0b4b42b
|
|
| MD5 |
6da301d2260b9ef5bebc10f15ce3c621
|
|
| BLAKE2b-256 |
435d0a2ae73e3b09e589a9b52c9d85e6a14a88105f2d2f1904f3c1a6692e2da1
|
File details
Details for the file bmp-0.2.6-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: bmp-0.2.6-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 636.2 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2e1eb02f94e996cfea97b2c9b28fefde0898a086ebc9776fe0f4e5d2451636b
|
|
| MD5 |
a20c68baf3e8b178787b3625b1923d06
|
|
| BLAKE2b-256 |
0b2ab9ce795ab71eb3f12f51fd4dff6a5cb1adfb616854eb250843ba50963f64
|
File details
Details for the file bmp-0.2.6-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 865.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d5028b0f2f23a9a9e865222b8bee17013dda87054ca3c18ecff6157127d3136
|
|
| MD5 |
5ec83f7734a63c401b3a08b37dc4d489
|
|
| BLAKE2b-256 |
adc4643d8a3ec7bae0c31f48ca3d0a628d56b180da0809fad07bd46fc159f24b
|
File details
Details for the file bmp-0.2.6-cp38-cp38-macosx_10_12_x86_64.whl.
File metadata
- Download URL: bmp-0.2.6-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 745.3 kB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9f56223e41dd8a62437c9c202df1cb9948968e2c67a80f494b21b58834f2ee
|
|
| MD5 |
2abca52c7b823f4c626ad509b49b35cb
|
|
| BLAKE2b-256 |
ee858013305807c746d67294500a261d74eba73f973e917d309ff4c47c4592c0
|
File details
Details for the file bmp-0.2.6-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: bmp-0.2.6-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 636.2 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1b9bef98563f4b21a346e42c3586eeec04849222fc1b5acba8386127a6638e0
|
|
| MD5 |
f2fa7378206dc9b373ecadc7fa933b44
|
|
| BLAKE2b-256 |
593d498fa557895abe0935529f431a2a2915b8ff9327893e5d479432cd544e02
|