Module base
BaseRanker Objects
class BaseRanker(BaseComponent)
timing
| timing(fn, attr_name)
Wrapper method used to time functions.
eval
| eval(label_index: str = "label", doc_index: str = "eval_document", label_origin: str = "gold_label", top_k: int = 10, open_domain: bool = False, return_preds: bool = False) -> dict
Performs evaluation of the Ranker. Ranker is evaluated in the same way as a Retriever based on whether it finds the correct document given the query string and at which position in the ranking of documents the correct document is.
| Returns a dict containing the following metrics:
- "recall": Proportion of questions for which correct document is among retrieved documents
- "mrr": Mean of reciprocal rank. Rewards retrievers that give relevant documents a higher rank.
Only considers the highest ranked relevant document.
- "map": Mean of average precision for each question. Rewards retrievers that give relevant
documents a higher rank. Considers all retrieved relevant documents. If ``open_domain=True``,
average precision is normalized by the number of retrieved relevant documents per query.
If ``open_domain=False``, average precision is normalized by the number of all relevant documents
per query.
Arguments:
label_index
: Index/Table in DocumentStore where labeled questions are storeddoc_index
: Index/Table in DocumentStore where documents that are used for evaluation are storedtop_k
: How many documents to return per queryopen_domain
: IfTrue
, retrieval will be evaluated by checking if the answer string to a question is contained in the retrieved docs (common approach in open-domain QA). IfFalse
, retrieval uses a stricter evaluation that checks if the retrieved document ids are within ids explicitly stated in the labels.return_preds
: Whether to add predictions in the returned dictionary. If True, the returned dictionary contains the keys "predictions" and "metrics".
Module sentence_transformers
SentenceTransformersRanker Objects
class SentenceTransformersRanker(BaseRanker)
Sentence Transformer based pre-trained Cross-Encoder model for Document Re-ranking (https://huggingface.co/cross-encoder). Re-Ranking can be used on top of a retriever to boost the performance for document search. This is particularly useful if the retriever has a high recall but is bad in sorting the documents by relevance.
SentenceTransformerRanker handles Cross-Encoder models that use a single logit as similarity score. https://www.sbert.net/docs/pretrained-models/ce-msmarco.html#usage-with-transformers In contrast, FARMRanker handles Cross-Encoder models that internally use two logits and output the classifier's probability of label "1" as similarity score. This includes TextPairClassification models trained within FARM.
| With a SentenceTransformersRanker, you can:
- directly get predictions via predict()
Usage example: ... retriever = ElasticsearchRetriever(document_store=document_store) ranker = SentenceTransformersRanker(model_name_or_path="cross-encoder/ms-marco-MiniLM-L-12-v2") p = Pipeline() p.add_node(component=retriever, name="ESRetriever", inputs=["Query"]) p.add_node(component=ranker, name="Ranker", inputs=["ESRetriever"])
__init__
| __init__(model_name_or_path: Union[str, Path], model_version: Optional[str] = None, top_k: int = 10)
Arguments:
model_name_or_path
: Directory of a saved model or the name of a public model e.g. 'cross-encoder/ms-marco-MiniLM-L-12-v2'. See https://huggingface.co/cross-encoder for full list of available modelsmodel_version
: The version of model to use from the HuggingFace model hub. Can be tag name, branch name, or commit hash.top_k
: The maximum number of documents to return
predict_batch
| predict_batch(query_doc_list: List[dict], top_k: int = None, batch_size: int = None)
Use loaded Ranker model to, for a list of queries, rank each query's supplied list of Document.
Returns list of dictionary of query and list of document sorted by (desc.) similarity with query
Arguments:
query_doc_list
: List of dictionaries containing queries with their retrieved documentstop_k
: The maximum number of answers to return for each querybatch_size
: Number of samples the model receives in one batch for inference
Returns:
List of dictionaries containing query and ranked list of Document
predict
| predict(query: str, documents: List[Document], top_k: Optional[int] = None) -> List[Document]
Use loaded ranker model to re-rank the supplied list of Document.
Returns list of Document sorted by (desc.) TextPairClassification similarity with the query.
Arguments:
query
: Query stringdocuments
: List of Document to be re-rankedtop_k
: The maximum number of documents to return
Returns:
List of Document