|
--- |
|
dataset_info: |
|
- config_name: corpus |
|
features: |
|
- name: _id |
|
dtype: string |
|
- name: text |
|
dtype: string |
|
splits: |
|
- name: train |
|
num_bytes: 4521394 |
|
num_examples: 2953 |
|
download_size: 2455042 |
|
dataset_size: 4521394 |
|
- config_name: queries |
|
features: |
|
- name: _id |
|
dtype: string |
|
- name: text |
|
dtype: string |
|
splits: |
|
- name: train |
|
num_bytes: 1939 |
|
num_examples: 50 |
|
download_size: 2620 |
|
dataset_size: 1939 |
|
- config_name: relevance |
|
features: |
|
- name: query-id |
|
dtype: string |
|
- name: positive-corpus-ids |
|
sequence: string |
|
- name: bm25-ranked-ids |
|
sequence: string |
|
splits: |
|
- name: train |
|
num_bytes: 1796038 |
|
num_examples: 50 |
|
download_size: 249760 |
|
dataset_size: 1796038 |
|
configs: |
|
- config_name: corpus |
|
data_files: |
|
- split: train |
|
path: corpus/train-* |
|
- config_name: queries |
|
data_files: |
|
- split: train |
|
path: queries/train-* |
|
- config_name: relevance |
|
data_files: |
|
- split: train |
|
path: relevance/train-* |
|
--- |
|
|
|
# NanoBEIR NFCorpus with BM25 rankings |
|
This dataset is an updated variant of [NanoNFCorpus](https://huggingface.co/datasets/zeta-alpha-ai/NanoNFCorpus), which is a subset of the NFCorpus dataset from the Benchmark for Information Retrieval (BEIR). |
|
NFCorpus was created as a subset of the rather large BEIR, designed to be more efficient to run. This dataset adds a `bm25-ranked-ids` column to the `relevance` subset, which contains a ranking of every single passage in the corpus to the query. |
|
|
|
This dataset is used in Sentence Transformers for evaluating CrossEncoder (i.e. reranker) models on NanoBEIR by reranking the top *k* results from BM25. |