Pyserini provides a number of prebuilt Lucene indexes. To list what's available:
from pyserini.search.lucene import LuceneSearcher
LuceneSearcher.list_prebuilt_indexes()
from pyserini.index.lucene import IndexReader
IndexReader.list_prebuilt_indexes()
It's easy initialize a searcher from a prebuilt index:
searcher = LuceneSearcher.from_prebuilt_index('robust04')
You can use this simple Python one-liner to download the prebuilt index:
python -c "from pyserini.search.lucene import LuceneSearcher; LuceneSearcher.from_prebuilt_index('robust04')"
The downloaded index will be in ~/.cache/pyserini/indexes/
.
It's similarly easy initialize an index reader from a prebuilt index:
index_reader = IndexReader.from_prebuilt_index('robust04')
index_reader.stats()
The output will be:
{'total_terms': 174540872, 'documents': 528030, 'non_empty_documents': 528030, 'unique_terms': 923436}
Note that unless the underlying index was built with the -optimize
option (i.e., merging all index segments into a single segment), unique_terms
will show -1.
Nope, that's not a bug.
Pyserini also provides a number of prebuilt Faiss indexes. To list what's available:
from pyserini.search.faiss import FaissSearcher
FaissSearcher.list_prebuilt_indexes()
And to initialize a specific Faiss index:
searcher = FaissSearcher.from_prebuilt_index('msmarco-v1-passage.bge-base-en-v1.5', None)
Below is a summary of the prebuilt indexes that are currently available.
Detailed configuration information for the prebuilt indexes are stored in pyserini/prebuilt_index_info.py
.
MS MARCO
- Lucene index of the MS MARCO V1 document corpus.
- Lucene index of the MS MARCO V1 document corpus ('slim' version).
- Lucene index of the MS MARCO V1 document corpus ('full' version).
- Lucene index of the MS MARCO V1 document corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V1 document corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V1 segmented document corpus.
- Lucene index of the MS MARCO V1 segmented document corpus ('slim' version).
- Lucene index of the MS MARCO V1 segmented document corpus ('full' version).
- Lucene index of the MS MARCO V1 segmented document corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V1 segmented document corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V1 passage corpus.
- Lucene index of the MS MARCO V1 passage corpus ('slim' version).
- Lucene index of the MS MARCO V1 passage corpus ('full' version).
- Lucene index of the MS MARCO V1 passage corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V1 passage corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V1 passage corpus with four extra preprocessed fields for LTR. (Lucene 8)
- Lucene index of the MS MARCO V1 segmented document corpus with four extra preprocessed fields for LTR. (Lucene 8)
- Lucene index of the MS MARCO V2 document corpus.
- Lucene index of the MS MARCO V2 document corpus ('slim' version).
- Lucene index of the MS MARCO V2 document corpus ('full' version).
- Lucene index of the MS MARCO V2 document corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V2 document corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V2 segmented document corpus.
- Lucene index of the MS MARCO V2 segmented document corpus ('slim' version).
- Lucene index of the MS MARCO V2 segmented document corpus ('full' version).
- Lucene index of the MS MARCO V2 segmented document corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V2 segmented document corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V2 passage corpus.
- Lucene index of the MS MARCO V2 passage corpus ('slim' version).
- Lucene index of the MS MARCO V2 passage corpus ('full' version).
- Lucene index of the MS MARCO V2 passage corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V2 passage corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V2 augmented passage corpus.
- Lucene index of the MS MARCO V2 augmented passage corpus ('slim' version).
- Lucene index of the MS MARCO V2 augmented passage corpus ('full' version).
- Lucene index of the MS MARCO V2 augmented passage corpus with doc2query-T5 expansions.
- Lucene index (+docvectors) of the MS MARCO V2 augmented passage corpus with doc2query-T5 expansions.
- Lucene index of the MS MARCO V2.1 document corpus.
- Lucene index of the MS MARCO V2.1 document corpus ('slim' version).
- Lucene index of the MS MARCO V2.1 document corpus ('full' version).
- Lucene index of the MS MARCO V2.1 segmented document corpus.
- Lucene index of the MS MARCO V2.1 segmented document corpus ('slim' version).
- Lucene index of the MS MARCO V2.1 segmented document corpus ('full' version).
msmarco-v1-doc
[readme]
msmarco-v1-doc-slim
[readme]
msmarco-v1-doc-full
[readme]
msmarco-v1-doc.d2q-t5
[readme]
msmarco-v1-doc.d2q-t5-docvectors
[readme]
msmarco-v1-doc-segmented
[readme]
msmarco-v1-doc-segmented-slim
[readme]
msmarco-v1-doc-segmented-full
[readme]
msmarco-v1-doc-segmented.d2q-t5
[readme]
msmarco-v1-doc-segmented.d2q-t5-docvectors
[readme]
msmarco-v1-passage
[readme]
msmarco-v1-passage-slim
[readme]
msmarco-v1-passage-full
[readme]
msmarco-v1-passage.d2q-t5
[readme]
msmarco-v1-passage.d2q-t5-docvectors
[readme]
msmarco-v1-passage.ltr
[readme]
msmarco-v1-doc-segmented.ltr
[readme]
msmarco-v2-doc
[readme]
msmarco-v2-doc-slim
[readme]
msmarco-v2-doc-full
[readme]
msmarco-v2-doc.d2q-t5
[readme]
msmarco-v2-doc.d2q-t5-docvectors
[readme]
msmarco-v2-doc-segmented
[readme]
msmarco-v2-doc-segmented-slim
[readme]
msmarco-v2-doc-segmented-full
[readme]
msmarco-v2-doc-segmented.d2q-t5
[readme]
msmarco-v2-doc-segmented.d2q-t5-docvectors
[readme]
msmarco-v2-passage
[readme]
msmarco-v2-passage-slim
[readme]
msmarco-v2-passage-full
[readme]
msmarco-v2-passage.d2q-t5
[readme]
msmarco-v2-passage.d2q-t5-docvectors
[readme]
msmarco-v2-passage-augmented
[readme]
msmarco-v2-passage-augmented-slim
[readme]
msmarco-v2-passage-augmented-full
[readme]
msmarco-v2-passage-augmented.d2q-t5
[readme]
msmarco-v2-passage-augmented.d2q-t5-docvectors
[readme]
msmarco-v2.1-doc
[readme]
msmarco-v2.1-doc-slim
[readme]
msmarco-v2.1-doc-full
[readme]
msmarco-v2.1-doc-segmented
[readme]
msmarco-v2.1-doc-segmented-slim
[readme]
msmarco-v2.1-doc-segmented-full
[readme]
BEIR
- Lucene flat index of BEIR (v1.0.0): TREC-COVID.
- Lucene flat index of BEIR (v1.0.0): BioASQ.
- Lucene flat index of BEIR (v1.0.0): NFCorpus.
- Lucene flat index of BEIR (v1.0.0): NQ.
- Lucene flat index of BEIR (v1.0.0): HotpotQA.
- Lucene flat index of BEIR (v1.0.0): FiQA-2018.
- Lucene flat index of BEIR (v1.0.0): Signal-1M.
- Lucene flat index of BEIR (v1.0.0): TREC-NEWS.
- Lucene flat index of BEIR (v1.0.0): Robust04.
- Lucene flat index of BEIR (v1.0.0): ArguAna.
- Lucene flat index of BEIR (v1.0.0): Webis-Touche2020.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-android.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-english.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-gaming.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-gis.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-mathematica.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-physics.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-programmers.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-stats.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-tex.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-unix.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-webmasters.
- Lucene flat index of BEIR (v1.0.0): CQADupStack-wordpress.
- Lucene flat index of BEIR (v1.0.0): Quora.
- Lucene flat index of BEIR (v1.0.0): DBPedia.
- Lucene flat index of BEIR (v1.0.0): SCIDOCS.
- Lucene flat index of BEIR (v1.0.0): FEVER.
- Lucene flat index of BEIR (v1.0.0): Climate-FEVER.
- Lucene flat index of BEIR (v1.0.0): SciFact.
- Lucene multifield index of BEIR (v1.0.0): TREC-COVID.
- Lucene multifield index of BEIR (v1.0.0): BioASQ.
- Lucene multifield index of BEIR (v1.0.0): NFCorpus.
- Lucene multifield index of BEIR (v1.0.0): NQ.
- Lucene multifield index of BEIR (v1.0.0): HotpotQA.
- Lucene multifield index of BEIR (v1.0.0): FiQA-2018.
- Lucene multifield index of BEIR (v1.0.0): Signal-1M.
- Lucene multifield index of BEIR (v1.0.0): TREC-NEWS.
- Lucene multifield index of BEIR (v1.0.0): Robust04.
- Lucene multifield index of BEIR (v1.0.0): ArguAna.
- Lucene multifield index of BEIR (v1.0.0): Webis-Touche2020.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-android.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-english.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-gaming.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-gis.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-mathematica.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-physics.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-programmers.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-stats.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-tex.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-unix.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-webmasters.
- Lucene multifield index of BEIR (v1.0.0): CQADupStack-wordpress.
- Lucene multifield index of BEIR (v1.0.0): Quora.
- Lucene multifield index of BEIR (v1.0.0): DBPedia.
- Lucene multifield index of BEIR (v1.0.0): SCIDOCS.
- Lucene multifield index of BEIR (v1.0.0): FEVER.
- Lucene multifield index of BEIR (v1.0.0): Climate-FEVER.
- Lucene multifield index of BEIR (v1.0.0): SciFact.
beir-v1.0.0-trec-covid.flat
[readme]
beir-v1.0.0-bioasq.flat
[readme]
beir-v1.0.0-nfcorpus.flat
[readme]
beir-v1.0.0-nq.flat
[readme]
beir-v1.0.0-hotpotqa.flat
[readme]
beir-v1.0.0-fiqa.flat
[readme]
beir-v1.0.0-signal1m.flat
[readme]
beir-v1.0.0-trec-news.flat
[readme]
beir-v1.0.0-robust04.flat
[readme]
beir-v1.0.0-arguana.flat
[readme]
beir-v1.0.0-webis-touche2020.flat
[readme]
beir-v1.0.0-cqadupstack-android.flat
[readme]
beir-v1.0.0-cqadupstack-english.flat
[readme]
beir-v1.0.0-cqadupstack-gaming.flat
[readme]
beir-v1.0.0-cqadupstack-gis.flat
[readme]
beir-v1.0.0-cqadupstack-mathematica.flat
[readme]
beir-v1.0.0-cqadupstack-physics.flat
[readme]
beir-v1.0.0-cqadupstack-programmers.flat
[readme]
beir-v1.0.0-cqadupstack-stats.flat
[readme]
beir-v1.0.0-cqadupstack-tex.flat
[readme]
beir-v1.0.0-cqadupstack-unix.flat
[readme]
beir-v1.0.0-cqadupstack-webmasters.flat
[readme]
beir-v1.0.0-cqadupstack-wordpress.flat
[readme]
beir-v1.0.0-quora.flat
[readme]
beir-v1.0.0-dbpedia-entity.flat
[readme]
beir-v1.0.0-scidocs.flat
[readme]
beir-v1.0.0-fever.flat
[readme]
beir-v1.0.0-climate-fever.flat
[readme]
beir-v1.0.0-scifact.flat
[readme]
beir-v1.0.0-trec-covid.multifield
[readme]
beir-v1.0.0-bioasq.multifield
[readme]
beir-v1.0.0-nfcorpus.multifield
[readme]
beir-v1.0.0-nq.multifield
[readme]
beir-v1.0.0-hotpotqa.multifield
[readme]
beir-v1.0.0-fiqa.multifield
[readme]
beir-v1.0.0-signal1m.multifield
[readme]
beir-v1.0.0-trec-news.multifield
[readme]
beir-v1.0.0-robust04.multifield
[readme]
beir-v1.0.0-arguana.multifield
[readme]
beir-v1.0.0-webis-touche2020.multifield
[readme]
beir-v1.0.0-cqadupstack-android.multifield
[readme]
beir-v1.0.0-cqadupstack-english.multifield
[readme]
beir-v1.0.0-cqadupstack-gaming.multifield
[readme]
beir-v1.0.0-cqadupstack-gis.multifield
[readme]
beir-v1.0.0-cqadupstack-mathematica.multifield
[readme]
beir-v1.0.0-cqadupstack-physics.multifield
[readme]
beir-v1.0.0-cqadupstack-programmers.multifield
[readme]
beir-v1.0.0-cqadupstack-stats.multifield
[readme]
beir-v1.0.0-cqadupstack-tex.multifield
[readme]
beir-v1.0.0-cqadupstack-unix.multifield
[readme]
beir-v1.0.0-cqadupstack-webmasters.multifield
[readme]
beir-v1.0.0-cqadupstack-wordpress.multifield
[readme]
beir-v1.0.0-quora.multifield
[readme]
beir-v1.0.0-dbpedia-entity.multifield
[readme]
beir-v1.0.0-scidocs.multifield
[readme]
beir-v1.0.0-fever.multifield
[readme]
beir-v1.0.0-climate-fever.multifield
[readme]
beir-v1.0.0-scifact.multifield
[readme]
Mr.TyDi
- Lucene index for Mr.TyDi v1.1 (Arabic).
- Lucene index for Mr.TyDi v1.1 (Bengali).
- Lucene index for Mr.TyDi v1.1 (English).
- Lucene index for Mr.TyDi v1.1 (Finnish).
- Lucene index for Mr.TyDi v1.1 (Indonesian).
- Lucene index for Mr.TyDi v1.1 (Japanese).
- Lucene index for Mr.TyDi v1.1 (Korean).
- Lucene index for Mr.TyDi v1.1 (Russian).
- Lucene index for Mr.TyDi v1.1 (Swahili).
- Lucene index for Mr.TyDi v1.1 (Telugu).
- Lucene index for Mr.TyDi v1.1 (Thai).
mrtydi-v1.1-ar
[readme]
mrtydi-v1.1-bn
[readme]
mrtydi-v1.1-en
[readme]
mrtydi-v1.1-fi
[readme]
mrtydi-v1.1-id
[readme]
mrtydi-v1.1-ja
[readme]
mrtydi-v1.1-ko
[readme]
mrtydi-v1.1-ru
[readme]
mrtydi-v1.1-sw
[readme]
mrtydi-v1.1-te
[readme]
mrtydi-v1.1-th
[readme]
MIRACL
- Lucene index for MIRACL v1.0 (Arabic).
- Lucene index for MIRACL v1.0 (Bengali).
- Lucene index for MIRACL v1.0 (English).
- Lucene index for MIRACL v1.0 (Spanish).
- Lucene index for MIRACL v1.0 (Persian).
- Lucene index for MIRACL v1.0 (Finnish).
- Lucene index for MIRACL v1.0 (French).
- Lucene index for MIRACL v1.0 (Hindi).
- Lucene index for MIRACL v1.0 (Indonesian).
- Lucene index for MIRACL v1.0 (Japanese).
- Lucene index for MIRACL v1.0 (Korean).
- Lucene index for MIRACL v1.0 (Russian).
- Lucene index for MIRACL v1.0 (Swahili).
- Lucene index for MIRACL v1.0 (Telugu).
- Lucene index for MIRACL v1.0 (Thai).
- Lucene index for MIRACL v1.0 (Chinese).
- Lucene index for MIRACL v1.0 (German).
- Lucene index for MIRACL v1.0 (Yoruba).
miracl-v1.0-ar
[readme]
miracl-v1.0-bn
[readme]
miracl-v1.0-en
[readme]
miracl-v1.0-es
[readme]
miracl-v1.0-fa
[readme]
miracl-v1.0-fi
[readme]
miracl-v1.0-fr
[readme]
miracl-v1.0-hi
[readme]
miracl-v1.0-id
[readme]
miracl-v1.0-ja
[readme]
miracl-v1.0-ko
[readme]
miracl-v1.0-ru
[readme]
miracl-v1.0-sw
[readme]
miracl-v1.0-te
[readme]
miracl-v1.0-th
[readme]
miracl-v1.0-zh
[readme]
miracl-v1.0-de
[readme]
miracl-v1.0-yo
[readme]
Other
- Lucene index for CIRAL v1.0 (Hausa).
- Lucene index for CIRAL v1.0 (Somali).
- Lucene index for CIRAL v1.0 (Swahili).
- Lucene index for CIRAL v1.0 (Yoruba).
- Lucene index for CIRAL v1.0 English Translations (Hausa).
- Lucene index for CIRAL v1.0 English Translations (Somali).
- Lucene index for CIRAL v1.0 English Translations (Swahili).
- Lucene index for CIRAL v1.0 English Translations (Yoruba).
ciral-v1.0-ha
[readme]
ciral-v1.0-so
[readme]
ciral-v1.0-sw
[readme]
ciral-v1.0-yo
[readme]
ciral-v1.0-ha-en
[readme]
ciral-v1.0-so-en
[readme]
ciral-v1.0-sw-en
[readme]
ciral-v1.0-yo-en
[readme]
- Lucene index of the CACM corpus.
- Lucene index of TREC Disks 4 & 5 (minus Congressional Records), used in the TREC 2004 Robust Track.
- Lucene index of the AQUAINT collection, used in the TREC 2005 Robust Track.
- Lucene index of the New York Times Annotated Corpus, used in the TREC 2017 Common Core Track.
- Lucene index of the TREC Washington Post Corpus, used in the TREC 2018 Common Core Track.
- Lucene index of English Wikipedia for BERTserini
- Lucene index of Chinese Wikipedia for BERTserini
- Lucene index for TREC-COVID Round 5: abstract index
- Lucene index for TREC-COVID Round 5: full-text index
- Lucene index for TREC-COVID Round 5: paragraph index
- Lucene index for TREC-COVID Round 4: abstract index
- Lucene index for TREC-COVID Round 4: full-text index
- Lucene index for TREC-COVID Round 4: paragraph index
- Lucene index for TREC-COVID Round 3: abstract index
- Lucene index for TREC-COVID Round 3: full-text index
- Lucene index for TREC-COVID Round 3: paragraph index
- Lucene index for TREC-COVID Round 2: abstract index
- Lucene index for TREC-COVID Round 2: full-text index
- Lucene index for TREC-COVID Round 2: paragraph index
- Lucene index for TREC-COVID Round 1: abstract index
- Lucene index for TREC-COVID Round 1: full-text index
- Lucene index for TREC-COVID Round 1: paragraph index
- Lucene index for TREC 2019 CaST
- Lucene index of Wikipedia with DPR 100-word splits
- Lucene index of Wikipedia with DPR 100-word splits (slim version, document text not stored)
- Lucene index of Wikipedia snapshot used as KILT's knowledge source.
- Lucene index of wiki-all-6-3-tamber from castorini/odqa-wiki-corpora
- Lucene index for HC4 v1.0 (Persian).
- Lucene index for HC4 v1.0 (Russian).
- Lucene index for HC4 v1.0 (Chinese).
- Lucene index for NeuCLIR 2022 corpus (Persian).
- Lucene index for NeuCLIR 2022 corpus (Russian).
- Lucene index for NeuCLIR 2022 corpus (Chinese).
- Lucene index for NeuCLIR 2022 corpus (official English translation from Persian).
- Lucene index for NeuCLIR 2022 corpus (official English translation from Russian).
- Lucene index for NeuCLIR 2022 corpus (official English translation from Chinese).
- Lucene index for AToMiC Text v0.2.1 small setting on validation set
- Lucene index for AToMiC Text v0.2.1 base setting on validation set
- Lucene index for AToMiC Text v0.2.1 large setting on validation set
- Lucene index for AToMiC Images v0.2 small setting on validation set
- Lucene index for AToMiC Images v0.2 base setting on validation set
- Lucene index for AToMiC Images v0.2 large setting on validation set
cacm
disk45
[readme]
aquaint
[readme]
nyt
[readme]
wapo.v2
[readme]
enwiki-paragraphs
zhwiki-paragraphs
trec-covid-r5-abstract
trec-covid-r5-full-text
trec-covid-r5-paragraph
trec-covid-r4-abstract
trec-covid-r4-full-text
trec-covid-r4-paragraph
trec-covid-r3-abstract
trec-covid-r3-full-text
trec-covid-r3-paragraph
trec-covid-r2-abstract
trec-covid-r2-full-text
trec-covid-r2-paragraph
trec-covid-r1-abstract
trec-covid-r1-full-text
trec-covid-r1-paragraph
cast2019
wikipedia-dpr-100w
[readme]
wikipedia-dpr-100w-slim
[readme]
wikipedia-kilt-doc
[readme]
wiki-all-6-3-tamber
[readme]
hc4-v1.0-fa
[readme]
hc4-v1.0-ru
[readme]
hc4-v1.0-zh
[readme]
neuclir22-fa
[readme]
neuclir22-ru
[readme]
neuclir22-zh
[readme]
neuclir22-fa-en
[readme]
neuclir22-ru-en
[readme]
neuclir22-zh-en
[readme]
atomic_text_v0.2.1_small_validation
[readme]
atomic_text_v0.2.1_base
[readme]
atomic_text_v0.2.1_large
[readme]
atomic_image_v0.2_small_validation
[readme]
atomic_image_v0.2_base
[readme]
atomic_image_v0.2_large
[readme]
MS MARCO
- Lucene impact index of the MS MARCO V1 passage corpus enoded by SLIM trained with BM25 negatives.
- Lucene impact index of the MS MARCO V1 passage corpus enoded by SLIM trained with cross-encoder distillation and hard-negative mining.
- Lucene impact index of the MS MARCO V1 passage corpus for uniCOIL.
- Lucene impact index of the MS MARCO V1 passage corpus for uniCOIL (noexp).
- Lucene impact index of the MS MARCO V1 passage corpus encoded by uniCOIL-TILDE.
- Lucene impact index of the MS MARCO V1 passage corpus encoded by DeepImpact.
- Lucene impact index of the MS MARCO V1 passage corpus encoded by distill-splade-max.
- Lucene impact index of the MS MARCO passage corpus encoded by SPLADE++ CoCondenser-EnsembleDistil.
- Lucene impact index (with docvectors) of the MS MARCO passage corpus encoded by SPLADE++ CoCondenser-EnsembleDistil.
- Lucene impact index (with text) of the MS MARCO passage corpus encoded by SPLADE++ CoCondenser-EnsembleDistil.
- Lucene impact index of the MS MARCO passage corpus encoded by SPLADE++ CoCondenser-SelfDistil.
- Lucene impact index (with docvectors) of the MS MARCO passage corpus encoded by SPLADE++ CoCondenser-SelfDistil.
- Lucene impact index (with text) of the MS MARCO passage corpus encoded by SPLADE++ CoCondenser-SelfDistil.
- Lucene impact index of the MS MARCO V1 segmented document corpus for uniCOIL, with title/segment encoding.
- Lucene impact index of the MS MARCO V1 segmented document corpus for uniCOIL (noexp), with title/segment encoding.
- Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL.
- Lucene impact index of the MS MARCO V2 passage corpus for uniCOIL (noexp).
- Lucene impact index of the MS MARCO V2 passage corpus encoded by SLIM (norefine) trained with cross-encoder distillation and hard-negative mining.
- Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL, with title prepended.
- Lucene impact index of the MS MARCO V2 segmented document corpus for uniCOIL (noexp) with title prepended.
msmarco-v1-passage.slimr
[readme]
msmarco-v1-passage.slimr-pp
[readme]
msmarco-v1-passage.unicoil
[readme]
msmarco-v1-passage.unicoil-noexp
[readme]
msmarco-v1-passage.unicoil-tilde
[readme]
msmarco-v1-passage.deepimpact
[readme]
msmarco-v1-passage.distill-splade-max
[readme]
msmarco-v1-passage.splade-pp-ed
[readme]
msmarco-v1-passage.splade-pp-ed-docvectors
[readme]
msmarco-v1-passage.splade-pp-ed-text
[readme]
msmarco-v1-passage.splade-pp-sd
[readme]
msmarco-v1-passage.splade-pp-sd-docvectors
[readme]
msmarco-v1-passage.splade-pp-sd-text
[readme]
msmarco-v1-doc-segmented.unicoil
[readme]
msmarco-v1-doc-segmented.unicoil-noexp
[readme]
msmarco-v2-passage.unicoil-0shot
[readme]
msmarco-v2-passage.unicoil-noexp-0shot
[readme]
msmarco-v2-passage.slimr-pp
msmarco-v2-doc-segmented.unicoil-0shot
[readme]
msmarco-v2-doc-segmented.unicoil-noexp-0shot
[readme]
BEIR
- Lucene impact index of BEIR (v1.0.0): TREC-COVID, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): BioASQ, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): NFCorpus, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): NQ, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): HotpotQA, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): FiQA-2018, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): Signal-1M, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): TREC-NEWS, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): Robust04, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): ArguAna, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): Webis-Touche2020, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-android, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-english, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-gaming, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-gis, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-mathematica, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-physics, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-programmers, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-stats, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-tex, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-unix, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-webmasters, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): CQADupStack-wordpress, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): Quora, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): DBPedia, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): SCIDOCS, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): FEVER, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): Climate-FEVER, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
- Lucene impact index of BEIR (v1.0.0): SciFact, encoded by SPLADE++ (CoCondenser-EnsembleDistil).
beir-v1.0.0-trec-covid.splade-pp-ed
[readme]
beir-v1.0.0-bioasq.splade-pp-ed
[readme]
beir-v1.0.0-nfcorpus.splade-pp-ed
[readme]
beir-v1.0.0-nq.splade-pp-ed
[readme]
beir-v1.0.0-hotpotqa.splade-pp-ed
[readme]
beir-v1.0.0-fiqa.splade-pp-ed
[readme]
beir-v1.0.0-signal1m.splade-pp-ed
[readme]
beir-v1.0.0-trec-news.splade-pp-ed
[readme]
beir-v1.0.0-robust04.splade-pp-ed
[readme]
beir-v1.0.0-arguana.splade-pp-ed
[readme]
beir-v1.0.0-webis-touche2020.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-android.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-english.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-gaming.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-gis.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-mathematica.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-physics.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-programmers.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-stats.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-tex.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-unix.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-webmasters.splade-pp-ed
[readme]
beir-v1.0.0-cqadupstack-wordpress.splade-pp-ed
[readme]
beir-v1.0.0-quora.splade-pp-ed
[readme]
beir-v1.0.0-dbpedia-entity.splade-pp-ed
[readme]
beir-v1.0.0-scidocs.splade-pp-ed
[readme]
beir-v1.0.0-fever.splade-pp-ed
[readme]
beir-v1.0.0-climate-fever.splade-pp-ed
[readme]
beir-v1.0.0-scifact.splade-pp-ed
[readme]
MS MARCO
- Lucene HNSW index of the MS MARCO V1 passage corpus encoded by BGE-base-en-v1.5.
- Lucene quantized HNSW index of the MS MARCO V1 passage corpus encoded by BGE-base-en-v1.5.
- Lucene HNSW index of the MS MARCO V1 passage corpus encoded by cos-DPR Distil.
- Lucene quantized HNSW index of the MS MARCO V1 passage corpus encoded by cos-DPR Distil.
msmarco-v1-passage.bge-base-en-v1.5.hnsw
[readme]
msmarco-v1-passage.bge-base-en-v1.5.hnsw-int8
[readme]
msmarco-v1-passage.cosdpr-distil.hnsw
[readme]
msmarco-v1-passage.cosdpr-distil.hnsw-int8
[readme]
BEIR
- Lucene HNSW index of BEIR collection 'trec-covid' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'bioasq' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'nfcorpus' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'nq' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'hotpotqa' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'fiqa' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'signal1m' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'trec-news' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'robust04' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'arguana' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'webis-touche2020' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-android' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-english' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-gaming' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-gis' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-mathematica' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-physics' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-programmers' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-stats' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-tex' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-unix' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-webmasters' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'cqadupstack-wordpress' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'quora' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'dbpedia-entity' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'scidocs' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'fever' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'climate-fever' encoded by BGE-base-en-v1.5.
- Lucene HNSW index of BEIR collection 'scifact' encoded by BGE-base-en-v1.5.
beir-v1.0.0-trec-covid.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-bioasq.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-nfcorpus.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-nq.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-hotpotqa.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-fiqa.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-signal1m.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-trec-news.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-robust04.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-arguana.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-webis-touche2020.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-android.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-english.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-gaming.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-gis.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-mathematica.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-physics.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-programmers.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-stats.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-tex.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-unix.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-webmasters.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-cqadupstack-wordpress.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-quora.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-dbpedia-entity.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-scidocs.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-fever.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-climate-fever.bge-base-en-v1.5.hnsw
[readme]
beir-v1.0.0-scifact.bge-base-en-v1.5.hnsw
[readme]
BEIR
- Lucene flat index of BEIR collection 'trec-covid' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'bioasq' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'nfcorpus' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'nq' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'hotpotqa' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'fiqa' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'signal1m' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'trec-news' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'robust04' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'arguana' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'webis-touche2020' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-android' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-english' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-gaming' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-gis' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-mathematica' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-physics' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-programmers' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-stats' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-tex' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-unix' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-webmasters' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'cqadupstack-wordpress' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'quora' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'dbpedia-entity' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'scidocs' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'fever' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'climate-fever' encoded by BGE-base-en-v1.5.
- Lucene flat index of BEIR collection 'scifact' encoded by BGE-base-en-v1.5.
beir-v1.0.0-trec-covid.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-bioasq.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-nfcorpus.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-nq.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-hotpotqa.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-fiqa.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-signal1m.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-trec-news.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-robust04.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-arguana.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-webis-touche2020.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-android.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-english.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-gaming.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-gis.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-mathematica.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-physics.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-programmers.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-stats.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-tex.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-unix.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-webmasters.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-cqadupstack-wordpress.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-quora.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-dbpedia-entity.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-scidocs.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-fever.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-climate-fever.bge-base-en-v1.5.flat
[readme]
beir-v1.0.0-scifact.bge-base-en-v1.5.flat
[readme]
MS MARCO
- Faiss flat index of the MS MARCO passage corpus encoded by cosDPR-distil.
- Faiss flat index of the MS MARCO passage corpus encoded by aggretriever-cocondenser.
- Faiss flat index of the MS MARCO passage corpus encoded by aggretriever-distilbert.
- Faiss flat index of the MS MARCO passage corpus encoded by the ANCE MS MARCO passage encoder
- Faiss flat index of the MS MARCO passage corpus encoded by the distilbert-dot-margin_mse-T2-msmarco encoder
- Faiss flat index of the MS MARCO passage corpus encoded by distilbert-dot-tas_b-b256-msmarco encoder
- Faiss flat index of the MS MARCO passage corpus encoded by the SBERT MS MARCO passage encoder
- Faiss index of the MS MARCO passage corpus encoded by BGE-base-en-v1.5 encoder
- Faiss flat index of the MS MARCO passage corpus encoded by TCT-ColBERT
- Faiss HNSW index of the MS MARCO passage corpus encoded by TCT-ColBERT
- Faiss flat index of the MS MARCO passage corpus encoded by the tct_colbert-v2 passage encoder
- Faiss flat index of the MS MARCO passage corpus encoded by the tct_colbert-v2-hn passage encoder
- Faiss flat index of the MS MARCO passage corpus encoded by the tct_colbert-v2-hnp passage encoder
- Faiss flat index of the MS MARCO passage corpus encoded by OpenAI ada2
- Faiss flat index of the MS MARCO passage corpus encoded by Cohere Embed English v3.0
- Faiss flat index of the MS MARCO passage corpus encoded by OpenAI text-embedding-3-large
- Faiss flat index of the MS MARCO document corpus encoded by the ANCE MaxP encoder
- Faiss flat index of the MS MARCO document corpus encoded by TCT-ColBERT
- Faiss flat index of the MS MARCO document corpus encoded by TCT-ColBERT-V2-HNP
msmarco-v1-passage.cosdpr-distil
msmarco-v1-passage.aggretriever-cocondenser
msmarco-v1-passage.aggretriever-distilbert
msmarco-v1-passage.ance
msmarco-v1-passage.distilbert-dot-margin-mse-t2
msmarco-v1-passage.distilbert-dot-tas_b-b256
msmarco-v1-passage.sbert
msmarco-v1-passage.bge-base-en-v1.5
msmarco-v1-passage.tct_colbert
msmarco-v1-passage.tct_colbert.hnsw
msmarco-v1-passage.tct_colbert-v2
msmarco-v1-passage.tct_colbert-v2-hn
msmarco-v1-passage.tct_colbert-v2-hnp
msmarco-v1-passage.openai-ada2
msmarco-v1-passage.cohere-embed-english-v3.0
msmarco-v1-passage.openai-text-embedding-3-large
[readme]
msmarco-v1-doc.ance-maxp
msmarco-v1-doc.tct_colbert
msmarco-v1-doc-segmented.tct_colbert-v2-hnp
BEIR
- Faiss flat index for BEIR (v1.0.0): TREC-COVID, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): BioASQ, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): NFCorpus, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): NQ, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): HotpotQA, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): FiQA-2018, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): Signal-1M, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): TREC-NEWS, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): Robust04, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): ArguAna, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): Webis-Touche2020, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-android, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-english, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-gaming, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-gis, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-mathematica, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-physics, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-programmers, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-stats, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-tex, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-unix, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-webmasters, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-wordpress, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): Quora, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): DBPedia, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): SCIDOCS, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): FEVER, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): Climate-FEVER, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): SciFact, encoded by Contriever.
- Faiss flat index for BEIR (v1.0.0): TREC-COVID, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): BioASQ, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): NFCorpus, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): NQ, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): HotpotQA, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): FiQA-2018, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): Signal-1M, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): TREC-NEWS, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): Robust04, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): ArguAna, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): Webis-Touche2020, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-android, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-english, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-gaming, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-gis, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-mathematica, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-physics, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-programmers, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-stats, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-tex, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-unix, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-webmasters, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-wordpress, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): Quora, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): DBPedia, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): SCIDOCS, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): FEVER, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): Climate-FEVER, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): SciFact, encoded by Contriever w/ MS MARCO FTing.
- Faiss flat index for BEIR (v1.0.0): TREC-COVID, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): BioASQ, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): NFCorpus, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): NQ, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): HotpotQA, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): FiQA-2018, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): Signal-1M, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): TREC-NEWS, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): Robust04, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): ArguAna, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): Webis-Touche2020, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-android, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-english, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-gaming, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-gis, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-mathematica, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-physics, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-programmers, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-stats, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-tex, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-unix, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-webmasters, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): CQADupStack-wordpress, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): Quora, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): DBPedia, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): SCIDOCS, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): FEVER, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): Climate-FEVER, encoded by BGE-base-en-v1.5.
- Faiss flat index for BEIR (v1.0.0): SciFact, encoded by BGE-base-en-v1.5.
- Faiss index for BEIR v1.0.0 (TREC-COVID) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (BioASQ) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (NFCorpus) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (NQ) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (HotpotQA) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (FiQA-2018) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (Signal-1M) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (TREC-NEWS) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (Robust04) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (ArguAna) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (Webis-Touche2020) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-android) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-english) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-gaming) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-gis) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-mathematica) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-physics) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-programmers) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-stats) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-tex) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-unix) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-webmasters) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (CQADupStack-wordpress) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (Quora) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (DBPedia) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (SCIDOCS) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (FEVER) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (Climate-FEVER) corpus encoded by cohere-embed-english-v3.0 encoder.
- Faiss index for BEIR v1.0.0 (SciFact) corpus encoded by cohere-embed-english-v3.0 encoder.
beir-v1.0.0-trec-covid.contriever
[readme]
beir-v1.0.0-bioasq.contriever
[readme]
beir-v1.0.0-nfcorpus.contriever
[readme]
beir-v1.0.0-nq.contriever
[readme]
beir-v1.0.0-hotpotqa.contriever
[readme]
beir-v1.0.0-fiqa.contriever
[readme]
beir-v1.0.0-signal1m.contriever
[readme]
beir-v1.0.0-trec-news.contriever
[readme]
beir-v1.0.0-robust04.contriever
[readme]
beir-v1.0.0-arguana.contriever
[readme]
beir-v1.0.0-webis-touche2020.contriever
[readme]
beir-v1.0.0-cqadupstack-android.contriever
[readme]
beir-v1.0.0-cqadupstack-english.contriever
[readme]
beir-v1.0.0-cqadupstack-gaming.contriever
[readme]
beir-v1.0.0-cqadupstack-gis.contriever
[readme]
beir-v1.0.0-cqadupstack-mathematica.contriever
[readme]
beir-v1.0.0-cqadupstack-physics.contriever
[readme]
beir-v1.0.0-cqadupstack-programmers.contriever
[readme]
beir-v1.0.0-cqadupstack-stats.contriever
[readme]
beir-v1.0.0-cqadupstack-tex.contriever
[readme]
beir-v1.0.0-cqadupstack-unix.contriever
[readme]
beir-v1.0.0-cqadupstack-webmasters.contriever
[readme]
beir-v1.0.0-cqadupstack-wordpress.contriever
[readme]
beir-v1.0.0-quora.contriever
[readme]
beir-v1.0.0-dbpedia-entity.contriever
[readme]
beir-v1.0.0-scidocs.contriever
[readme]
beir-v1.0.0-fever.contriever
[readme]
beir-v1.0.0-climate-fever.contriever
[readme]
beir-v1.0.0-scifact.contriever
[readme]
beir-v1.0.0-trec-covid.contriever-msmarco
[readme]
beir-v1.0.0-bioasq.contriever-msmarco
[readme]
beir-v1.0.0-nfcorpus.contriever-msmarco
[readme]
beir-v1.0.0-nq.contriever-msmarco
[readme]
beir-v1.0.0-hotpotqa.contriever-msmarco
[readme]
beir-v1.0.0-fiqa.contriever-msmarco
[readme]
beir-v1.0.0-signal1m.contriever-msmarco
[readme]
beir-v1.0.0-trec-news.contriever-msmarco
[readme]
beir-v1.0.0-robust04.contriever-msmarco
[readme]
beir-v1.0.0-arguana.contriever-msmarco
[readme]
beir-v1.0.0-webis-touche2020.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-android.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-english.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-gaming.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-gis.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-mathematica.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-physics.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-programmers.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-stats.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-tex.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-unix.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-webmasters.contriever-msmarco
[readme]
beir-v1.0.0-cqadupstack-wordpress.contriever-msmarco
[readme]
beir-v1.0.0-quora.contriever-msmarco
[readme]
beir-v1.0.0-dbpedia-entity.contriever-msmarco
[readme]
beir-v1.0.0-scidocs.contriever-msmarco
[readme]
beir-v1.0.0-fever.contriever-msmarco
[readme]
beir-v1.0.0-climate-fever.contriever-msmarco
[readme]
beir-v1.0.0-scifact.contriever-msmarco
[readme]
beir-v1.0.0-trec-covid.bge-base-en-v1.5
beir-v1.0.0-bioasq.bge-base-en-v1.5
beir-v1.0.0-nfcorpus.bge-base-en-v1.5
beir-v1.0.0-nq.bge-base-en-v1.5
beir-v1.0.0-hotpotqa.bge-base-en-v1.5
beir-v1.0.0-fiqa.bge-base-en-v1.5
beir-v1.0.0-signal1m.bge-base-en-v1.5
beir-v1.0.0-trec-news.bge-base-en-v1.5
beir-v1.0.0-robust04.bge-base-en-v1.5
beir-v1.0.0-arguana.bge-base-en-v1.5
beir-v1.0.0-webis-touche2020.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-android.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-english.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-gaming.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-gis.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-mathematica.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-physics.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-programmers.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-stats.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-tex.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-unix.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-webmasters.bge-base-en-v1.5
beir-v1.0.0-cqadupstack-wordpress.bge-base-en-v1.5
beir-v1.0.0-quora.bge-base-en-v1.5
beir-v1.0.0-dbpedia-entity.bge-base-en-v1.5
beir-v1.0.0-scidocs.bge-base-en-v1.5
beir-v1.0.0-fever.bge-base-en-v1.5
beir-v1.0.0-climate-fever.bge-base-en-v1.5
beir-v1.0.0-scifact.bge-base-en-v1.5
beir-v1.0.0-trec-covid.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-bioasq.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-nfcorpus.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-nq.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-hotpotqa.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-fiqa.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-signal1m.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-trec-news.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-robust04.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-arguana.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-webis-touche2020.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-android.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-english.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-gaming.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-gis.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-mathematica.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-physics.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-programmers.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-stats.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-tex.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-unix.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-webmasters.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-cqadupstack-wordpress.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-quora.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-dbpedia-entity.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-scidocs.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-fever.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-climate-fever.cohere-embed-english-v3.0
[readme]
beir-v1.0.0-scifact.cohere-embed-english-v3.0
[readme]
Mr.TyDi
- Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
- Faiss index for Mr.TyDi v1.1 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on NQ.
mrtydi-v1.1-arabic-mdpr-nq
[readme]
mrtydi-v1.1-bengali-mdpr-nq
[readme]
mrtydi-v1.1-english-mdpr-nq
[readme]
mrtydi-v1.1-finnish-mdpr-nq
[readme]
mrtydi-v1.1-indonesian-mdpr-nq
[readme]
mrtydi-v1.1-japanese-mdpr-nq
[readme]
mrtydi-v1.1-korean-mdpr-nq
[readme]
mrtydi-v1.1-russian-mdpr-nq
[readme]
mrtydi-v1.1-swahili-mdpr-nq
[readme]
mrtydi-v1.1-telugu-mdpr-nq
[readme]
mrtydi-v1.1-thai-mdpr-nq
[readme]
mrtydi-v1.1-arabic-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-bengali-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-english-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-finnish-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-indonesian-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-japanese-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-korean-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-russian-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-swahili-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-telugu-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-thai-mdpr-tied-pft-msmarco
[readme]
mrtydi-v1.1-arabic-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-bengali-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-english-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-finnish-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-indonesian-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-japanese-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-korean-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-russian-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-swahili-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-telugu-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-thai-mdpr-tied-pft-nq
[readme]
mrtydi-v1.1-arabic-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-bengali-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-english-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-finnish-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-indonesian-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-japanese-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-korean-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-russian-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-swahili-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-telugu-mdpr-tied-pft-msmarco-ft-all
[readme]
mrtydi-v1.1-thai-mdpr-tied-pft-msmarco-ft-all
[readme]
MIRACL
- Faiss index for MIRACL v1.0 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Spanish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Persian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (French) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Hindi) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (German) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Yoruba) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Spanish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Persian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (French) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Hindi) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Arabic) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Bengali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (English) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Spanish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Persian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Finnish) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (French) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Hindi) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Indonesian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Japanese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Korean) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Russian) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Telugu) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Thai) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO, then fine-tuned in-language with MIRACL.
- Faiss index for MIRACL v1.0 (Arabic) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Bengali) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (English) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Spanish) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Persian) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Finnish) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (French) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Hindi) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Indonesian) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Japanese) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Korean) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Russian) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Swahili) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Telugu) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Thai) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Chinese) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (German) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for MIRACL v1.0 (Yoruba) corpus encoded by mContriever passage encoder pre-fine-tuned on MS MARCO.
miracl-v1.0-ar-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-bn-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-en-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-es-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-fa-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-fi-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-fr-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-hi-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-id-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-ja-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-ko-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-ru-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-sw-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-te-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-th-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-zh-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-de-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-yo-mdpr-tied-pft-msmarco
[readme]
miracl-v1.0-ar-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-bn-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-en-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-es-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-fa-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-fi-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-fr-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-hi-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-id-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-ja-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-ko-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-ru-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-sw-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-te-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-th-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-zh-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-de-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-yo-mdpr-tied-pft-msmarco-ft-all
[readme]
miracl-v1.0-ar-mdpr-tied-pft-msmarco-ft-miracl-ar
[readme]
miracl-v1.0-bn-mdpr-tied-pft-msmarco-ft-miracl-bn
[readme]
miracl-v1.0-en-mdpr-tied-pft-msmarco-ft-miracl-en
[readme]
miracl-v1.0-es-mdpr-tied-pft-msmarco-ft-miracl-es
[readme]
miracl-v1.0-fa-mdpr-tied-pft-msmarco-ft-miracl-fa
[readme]
miracl-v1.0-fi-mdpr-tied-pft-msmarco-ft-miracl-fi
[readme]
miracl-v1.0-fr-mdpr-tied-pft-msmarco-ft-miracl-fr
[readme]
miracl-v1.0-hi-mdpr-tied-pft-msmarco-ft-miracl-hi
[readme]
miracl-v1.0-id-mdpr-tied-pft-msmarco-ft-miracl-id
[readme]
miracl-v1.0-ja-mdpr-tied-pft-msmarco-ft-miracl-ja
[readme]
miracl-v1.0-ko-mdpr-tied-pft-msmarco-ft-miracl-ko
[readme]
miracl-v1.0-ru-mdpr-tied-pft-msmarco-ft-miracl-ru
[readme]
miracl-v1.0-sw-mdpr-tied-pft-msmarco-ft-miracl-sw
[readme]
miracl-v1.0-te-mdpr-tied-pft-msmarco-ft-miracl-te
[readme]
miracl-v1.0-th-mdpr-tied-pft-msmarco-ft-miracl-th
[readme]
miracl-v1.0-zh-mdpr-tied-pft-msmarco-ft-miracl-zh
[readme]
miracl-v1.0-ar-mcontriever-pft-msmarco
[readme]
miracl-v1.0-bn-mcontriever-pft-msmarco
[readme]
miracl-v1.0-en-mcontriever-pft-msmarco
[readme]
miracl-v1.0-es-mcontriever-pft-msmarco
[readme]
miracl-v1.0-fa-mcontriever-pft-msmarco
[readme]
miracl-v1.0-fi-mcontriever-pft-msmarco
[readme]
miracl-v1.0-fr-mcontriever-pft-msmarco
[readme]
miracl-v1.0-hi-mcontriever-pft-msmarco
[readme]
miracl-v1.0-id-mcontriever-pft-msmarco
[readme]
miracl-v1.0-ja-mcontriever-pft-msmarco
[readme]
miracl-v1.0-ko-mcontriever-pft-msmarco
[readme]
miracl-v1.0-ru-mcontriever-pft-msmarco
[readme]
miracl-v1.0-sw-mcontriever-pft-msmarco
[readme]
miracl-v1.0-te-mcontriever-pft-msmarco
[readme]
miracl-v1.0-th-mcontriever-pft-msmarco
[readme]
miracl-v1.0-zh-mcontriever-pft-msmarco
[readme]
miracl-v1.0-de-mcontriever-pft-msmarco
[readme]
miracl-v1.0-yo-mcontriever-pft-msmarco
[readme]
Other
- Faiss index for CIRAL v1.0 (Hausa) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for CIRAL v1.0 (Somali) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for CIRAL v1.0 (Swahili) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for CIRAL v1.0 (Yoruba) corpus encoded by mDPR passage encoder pre-fine-tuned on MS MARCO.
- Faiss index for CIRAL v1.0 (Hausa) corpus encoded by Afriberta-DPR passage encoder pre-fine-tuned on MS MARCO and fine-tuned on Latin languages in Mr. TyDi.
- Faiss index for CIRAL v1.0 (Somali) corpus encoded by Afriberta-DPR passage encoder pre-fine-tuned on MS MARCO and fine-tuned on Latin languages in Mr. TyDi.
- Faiss index for CIRAL v1.0 (Swahili) corpus encoded by Afriberta-DPR passage encoder pre-fine-tuned on MS MARCO and fine-tuned on Latin languages in Mr. TyDi.
- Faiss index for CIRAL v1.0 (Yoruba) corpus encoded by Afriberta-DPR passage encoder pre-fine-tuned on MS MARCO and fine-tuned on Latin languages in Mr. TyDi.
ciral-v1.0-ha-mdpr-tied-pft-msmarco
[readme]
ciral-v1.0-so-mdpr-tied-pft-msmarco
[readme]
ciral-v1.0-sw-mdpr-tied-pft-msmarco
[readme]
ciral-v1.0-yo-mdpr-tied-pft-msmarco
[readme]
ciral-v1.0-ha-afriberta-dpr-ptf-msmarco-ft-latin-mrtydi
[readme]
ciral-v1.0-so-afriberta-dpr-ptf-msmarco-ft-latin-mrtydi
[readme]
ciral-v1.0-sw-afriberta-dpr-ptf-msmarco-ft-latin-mrtydi
[readme]
ciral-v1.0-yo-afriberta-dpr-ptf-msmarco-ft-latin-mrtydi
[readme]
- Faiss FlatIP index of Wikipedia encoded by the DPR doc encoder trained on multiple QA datasets
- Faiss FlatIP index of Wikipedia encoded by the DPR doc encoder trained on NQ
- Faiss binary index of Wikipedia encoded by the BPR doc encoder trained on NQ
- Faiss FlatIP index of Wikipedia encoded by the ANCE-multi encoder
- Faiss FlatIP index of Wikipedia DPR encoded by the retriever model from 'Distilling Knowledge from Reader to Retriever for Question Answering' trained on NQ
- Faiss FlatIP index of Wikipedia DPR encoded by the retriever model from 'Distilling Knowledge from Reader to Retriever for Question Answering' trained on TriviaQA
- Faiss FlatIP index of wiki-all-6-3-tamber encoded by a 2nd iteration DPR model trained on multiple QA datasets
wikipedia-dpr-100w.dpr-multi
wikipedia-dpr-100w.dpr-single-nq
wikipedia-dpr-100w.bpr-single-nq
wikipedia-dpr-100w.ance-multi
wikipedia-dpr-100w.dkrr-nq
wikipedia-dpr-100w.dkrr-tqa
wiki-all-6-3.dpr2-multi-retriever
[readme]
- Faiss HNSW index of the CAsT2019 passage corpus encoded by the tct_colbert-v2 passage encoder
- Faiss index for AToMiC Images v0.2 on base corpus encoded by laion/CLIP-ViT-L-14-laion2B-s32B-b82K
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-ViT-L-14-laion2B-s32B-b82K
- Faiss index for AToMiC Images v0.2 on validation corpus encoded by laion/CLIP-ViT-L-14-laion2B-s32B-b82K
- Faiss index for AToMiC Texts v0.2.1 on base corpus encoded by laion/CLIP-ViT-L-14-laion2B-s32B-b82K
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-ViT-L-14-laion2B-s32B-b82K
- Faiss index for AToMiC Texts v0.2.1 on validation corpus encoded by laion/CLIP-ViT-L-14-laion2B-s32B-b82K
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-ViT-H-14.laion2b_s32b_b79k
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-ViT-H-14.laion2b_s32b_b79k
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-ViT-bigG-14.laion2b_s39b_b160k
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-ViT-bigG-14.laion2b_s39b_b160k
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-ViT-B-32.laion2b_e16
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-ViT-B-32.laion2b_e16
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-ViT-B-32.laion400m_e32
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-ViT-B-32.laion400m_e32
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-openai.clip-vit-large-patch14
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-openai.clip-vit-large-patch14
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-openai.clip-vit-base-patch32
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-openai.clip-vit-base-patch32
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-facebook.flava-full
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-facebook.flava-full
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-Salesforce.blip-itm-base-coco
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-Salesforce.blip-itm-base-coco
- Faiss index for AToMiC Images v0.2 on large corpus encoded by laion/CLIP-Salesforce.blip-itm-large-coco
- Faiss index for AToMiC Texts v0.2.1 on large corpus encoded by laion/CLIP-Salesforce.blip-itm-large-coco
cast2019-tct_colbert-v2.hnsw
[readme]
atomic-v0.2.ViT-L-14.laion2b_s32b_b82k.image.base
[readme]
atomic-v0.2.ViT-L-14.laion2b_s32b_b82k.image.large
[readme]
atomic-v0.2.ViT-L-14.laion2b_s32b_b82k.image.validation
[readme]
atomic-v0.2.1.ViT-L-14.laion2b_s32b_b82k.text.base
[readme]
atomic-v0.2.1.ViT-L-14.laion2b_s32b_b82k.text.large
[readme]
atomic-v0.2.1.ViT-L-14.laion2b_s32b_b82k.text.validation
[readme]
atomic-v0.2.ViT-H-14.laion2b_s32b_b79k.image.large
[readme]
atomic-v0.2.1.ViT-H-14.laion2b_s32b_b79k.text.large
[readme]
atomic-v0.2.ViT-bigG-14.laion2b_s39b_b160k.image.large
[readme]
atomic-v0.2.1.ViT-bigG-14.laion2b_s39b_b160k.text.large
[readme]
atomic-v0.2.ViT-B-32.laion2b_e16.image.large
[readme]
atomic-v0.2.1.ViT-B-32.laion2b_e16.text.large
[readme]
atomic-v0.2.ViT-B-32.laion400m_e32.image.large
[readme]
atomic-v0.2.1.ViT-B-32.laion400m_e32.text.large
[readme]
atomic-v0.2.openai.clip-vit-large-patch14.image.large
[readme]
atomic-v0.2.1.openai.clip-vit-large-patch14.text.large
[readme]
atomic-v0.2.openai.clip-vit-base-patch32.image.large
[readme]
atomic-v0.2.1.openai.clip-vit-base-patch32.text.large
[readme]
atomic-v0.2.facebook.flava-full.image.large
[readme]
atomic-v0.2.1.facebook.flava-full.text.large
[readme]
atomic-v0.2.Salesforce.blip-itm-base-coco.image.large
[readme]
atomic-v0.2.1.Salesforce.blip-itm-base-coco.text.large
[readme]
atomic-v0.2.Salesforce.blip-itm-large-coco.image.large
[readme]
atomic-v0.2.1.Salesforce.blip-itm-large-coco.text.large
[readme]