The dataset viewer is not available for this subset.
Exception: SplitsNotFoundError
Message: The split names could not be parsed from the dataset config.
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 286, in get_dataset_config_info
for split_generator in builder._split_generators(
~~~~~~~~~~~~~~~~~~~~~~~~~^
StreamingDownloadManager(base_path=builder.base_path, download_config=download_config)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/src/libs/libcommon/src/libcommon/packaged_modules.py", line 18, in _refuse_lance
raise NotImplementedError(LANCE_DISABLED_MESSAGE)
NotImplementedError: The Lance format is not supported.
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/split_names.py", line 68, in compute_split_names_from_streaming_response
for split in get_dataset_split_names(
~~~~~~~~~~~~~~~~~~~~~~~^
path=dataset,
^^^^^^^^^^^^^
config_name=config,
^^^^^^^^^^^^^^^^^^^
token=hf_token,
^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 340, in get_dataset_split_names
info = get_dataset_config_info(
path,
...<6 lines>...
**config_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 291, in get_dataset_config_info
raise SplitsNotFoundError("The split names could not be parsed from the dataset config.") from err
datasets.inspect.SplitsNotFoundError: The split names could not be parsed from the dataset config.Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
VIBE msmarco-qwen-1024-normalized in Lance format
This repository is a re-packaging of the msmarco-qwen-1024-normalized dataset from
VIBE: Vector Index Benchmark for Embeddings
as two Lance datasets: the corpus vectors and the
benchmark queries with their exact ground truth. Nothing else was changed: the vectors are
byte-identical to the upstream HDF5 file and the row order is preserved.
No vector or scalar index is included. The datasets contain plain data only, so you can build whatever index you want to benchmark (IVF_PQ, IVF_RQ, HNSW, ...) on top of them.
Provenance
| Upstream dataset | vector-index-bench/vibe, file msmarco-qwen-1024-normalized.hdf5 |
| Paper | VIBE: Vector Index Benchmark for Embeddings (arXiv:2505.17810), code at vector-index-bench/vibe |
| Source text | MS MARCO passages |
| Embedding model | Qwen text embedding model, as used by VIBE (1024 dimensions) |
| Corpus rows | 8,840,823 |
| Queries | 1,000, each with its exact 100 nearest neighbors |
| Dimensions | 1024, float32 |
| Normalization | all vectors are unit-norm |
| Distance metric | "any": cosine, inner product and euclidean give the same ranking on unit vectors |
| Upstream license | CC-BY-4.0 |
Contents
base.lance/ corpus, 8,840,823 rows, 9 fragments of <= 1,000,000 rows (~36 GB)
queries.lance/ 1,000 queries with ground truth (< 10 MB)
README.md
base.lance
| Column | Type | Meaning |
|---|---|---|
id |
int64 |
row index, 0 .. 8840822; equal to the row index in the upstream HDF5 train array |
vector |
fixed_size_list<float32>[1024] |
the corpus embedding, byte-identical to train[id] |
queries.lance
| Column | Type | Meaning |
|---|---|---|
query_id |
int64 |
row index in the upstream HDF5 test array, 0 .. 999 |
vector |
fixed_size_list<float32>[1024] |
the query embedding, byte-identical to test[query_id] |
neighbors |
list<int64> |
the 100 exact nearest corpus rows (base.lance id), best first, copied from the HDF5 neighbors array |
scores |
list<float32> |
inner product (= cosine similarity) between the query and each neighbor, descending; computed from the vectors above |
The row order of both datasets equals the upstream HDF5 row order, so base.lance row i is
train[i] and queries.lance row j is test[j], and the neighbors column indexes directly into base.lance.
How to use
import lance
from huggingface_hub import snapshot_download
root = snapshot_download("lance-format/vibe-msmarco-qwen-1024", repo_type="dataset")
corpus = lance.dataset(f"{root}/base.lance")
queries = lance.dataset(f"{root}/queries.lance")
print(corpus.count_rows(), queries.count_rows(), corpus.list_indices()) # 8840823 1000 []
# Build your own index and run the benchmark queries
corpus.create_index("vector", index_type="IVF_PQ", metric="cosine", num_partitions=1024, num_sub_vectors=64)
q = queries.take([0]).column("vector")[0].values.to_numpy()
hits = corpus.to_table(nearest={"column": "vector", "q": q, "k": 100}, columns=["id"])
With LanceDB:
import lancedb
db = lancedb.connect(root)
tbl = db.open_table("base")
tbl.search(q).metric("cosine").limit(100).to_pandas()
Notes
- Written with pylance
12.0.0-beta.18, Lance file format version 2.0 (stable), one commit per dataset, no indices. - Both datasets have exactly one version. No
_indicesdirectory exists. - Validation performed before upload: row counts and dimension, 500 random rows plus the first and last row compared byte-for-byte with the upstream vectors, and a brute-force cosine top-10 over the whole corpus reproducing the stored ground truth for three queries.
License and attribution
The data is redistributed under the CC-BY-4.0 license of the upstream VIBE release. Please credit the VIBE authors when you use it:
@misc{vibe2025,
title = {VIBE: Vector Index Benchmark for Embeddings},
author = {Elias J{\"a}{\"a}saari and Ville Hyv{\"o}nen and Matteo Ceccarello and Teemu Roos and Martin Aum{\"u}ller},
year = {2025},
eprint = {2505.17810},
archivePrefix = {arXiv},
url = {https://arxiv.org/abs/2505.17810}
}
- Downloads last month
- 41