llama-nemotron-rerank-1b-v2
by nvidia
Lightweight 1B text reranker for production retrieval pipelines
nvidia/llama-nemotron-rerank-1b-v2mixpeek://reranker@v1/nvidia_nemotron_rerank_1b_v2Overview
Llama-Nemotron Rerank 1B is NVIDIA's lightweight cross-encoder reranker based on Llama-3.2-1B. At 1B parameters, it is 3.5x smaller than mistral-based rerankers while delivering competitive quality across 26 languages and 8192-token context. It supports true/false relevance scoring: the model outputs the probability that a document is relevant to a query.
On Mixpeek, this reranker slots into the second stage of retrieval pipelines: after a fast embedding-based first stage returns top-K candidates, the reranker rescores each candidate with full cross-attention between query and document, significantly improving precision.
Architecture
Cross-encoder based on Llama-3.2-1B. Outputs relevance probability via true/false token logits. 8192-token max context. 26-language support. Trained with progressive curriculum on diverse relevance data.
Mixpeek SDK Integration
import { Mixpeek } from "mixpeek";
const mx = new Mixpeek({ apiKey: "API_KEY" });
// Managed: create a collection over a bucket; Mixpeek runs this model's extractor
const collection = await mx.collections.create({
namespace_id: "my-namespace",
collection_name: "my-collection",
source: { type: "bucket", bucket_ids: ["bkt_your_bucket"] },
feature_extractor: {
feature_extractor_name: "text_embeddings",
version: "v1",
parameters: { model_id: "BAAI/bge-large-en-v1.5" },
},
});Capabilities
- 1B parameters: 3.5x smaller than 4B rerankers
- 26-language support including CJK and European languages
- 8192-token context for long document reranking
- Cross-lingual reranking (86.83% on MLQA)
- Production-grade latency on modest hardware
Use Cases on Mixpeek
Benchmarks
| Dataset | Metric | Score | Source |
|---|---|---|---|
| NQ + HotpotQA + FiQA + TechQA | Recall@5 | 73.64% | NVIDIA, 2026: Model Card |
| MLQA (cross-lingual, 7 langs) | Recall@5 | 86.83% | NVIDIA, 2026: Model Card |
| MLDR (long docs, 13 langs) | Recall@5 | 70.69% | NVIDIA, 2026: Model Card |
Performance
Common Pipeline Companions
Specification
Research Paper
NVIDIA NeMo Retriever Reranking
arxiv.orgBuild a pipeline with llama-nemotron-rerank-1b-v2
Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.
Run it on your own data, free