DocumentationAPI ReferenceπŸ““ TutorialsπŸ§‘β€πŸ³ Cookbook🀝 IntegrationsπŸ’œ Discord

TopPSampler

Uses nucleus sampling to filter documents.

NameTopPSampler
Folder Path/samplers/
Most common Position in a PipelineAfter a Ranker
Mandatory Input variablesβ€œdocuments”: a list of Documents
Output variablesβ€œdocuments”: a list of Documents

Overview

Top-P (nucleus) sampling is a method that helps identify and select a subset of Documents based on their cumulative probabilities. Instead of choosing a fixed number of Documents, this method focuses on a specified percentage of the highest cumulative probabilities within a list of Documents. To put it simply, TopPSampler provides a way to efficiently select the most relevant Documents based on their similarity to a given query.

The practical goal of the TopPSampler is to return a list of Documents that, in sum, have a score larger than theΒ top_pΒ value. So, for example, whenΒ top_pΒ is set to a high value, more Documents will be returned, which can result in more varied outputs. The value is typically set between 0 and 1. By default, the component uses Documents' score fields to look at the similarity scores.

The component’sΒ run()Β method takes in a set of Documents, calculates the similarity scores between the query and the Documents, and then filters the Documents based on the cumulative probability of these scores.

Usage

On its own

from haystack import Document
from haystack.components.samplers import TopPSampler

sampler = TopPSampler(top_p=0.99, score_field="similarity_score")
docs = [
    Document(content="Berlin", meta={"similarity_score": -10.6}),
    Document(content="Belgrade", meta={"similarity_score": -8.9}),
    Document(content="Sarajevo", meta={"similarity_score": -4.6}),
]
output = sampler.run(documents=docs)
docs = output["documents"]
print(docs)

In a Pipeline

To best understand how can you use a TopPSampler and which components to pair it with, have a look at this recipe:


Related Links

See the parameters details in our API reference: