BEIR - RetroMAE Indexes
Collection
13 items
•
Updated
RetroMAE index for Climate-Fever
# Load the artifact
import pyterrier_alpha as pta
artifact = pta.Artifact.from_hf('pyterrier/climate-fever.retromae.flex')
artifact.np_retriever()
climate-fever
name | nDCG@10 | R@1000 |
---|---|---|
np (flat) | 0.1967 | 0.6945 |
import pyterrier as pt
from tqdm import tqdm
import ir_datasets
from pyterrier_dr import FlexIndex, RetroMAE
pipeline = RetroMAE.msmarco_distill() >> FlexIndex("climate-fever.retromae.flex")
dataset = ir_datasets.load('beir/climate-fever')
docs = ({'docno': d.doc_id, 'text': d.default_text()} for d in tqdm(dataset.docs))
pipeline.index(docs)
{
"type": "dense_index",
"format": "flex",
"vec_size": 768,
"doc_count": 5416593
}