NEWVectors or files. Pick a path.Start →
    Models/Reranking/Qwen/Qwen3-Reranker-8B
    HFRerankingApache 2.0

    Qwen3-Reranker-8B

    by Qwen

    SOTA text cross-encoder reranker: instruction-aware, 100+ languages

    Identifiers
    Model ID
    Qwen/Qwen3-Reranker-8B
    Feature URI
    mixpeek://reranker@v1/qwen3_reranker_8b_v1

    Overview

    Qwen3-Reranker-8B is the text reranking counterpart to Qwen3-Embedding, currently the top-scoring model on MTEB-R reranking benchmarks (69.76). It operates as a cross-encoder: concatenating query and document into a single input and running full bidirectional attention to produce a relevance score.

    Like the embedding model, it supports instruction-tuned task conditioning: you can specify what makes a document relevant for your specific use case. On Mixpeek, it slots into the second stage of a two-stage retrieval pipeline: the embedding model retrieves candidates, and the reranker precision-sorts the top results.

    Architecture

    Cross-encoder architecture on Qwen3 8B backbone. Processes concatenated query-document pairs with full bidirectional attention. Outputs a scalar relevance score. Supports instruction prefixes for task-specific ranking criteria.

    Mixpeek SDK Integration

    // Reranking is a retriever STAGE in Mixpeek, not an ingest-time extractor.
    // The rerank stage runs a cross-encoder inference service; the shipped default
    // is BAAI/bge-reranker-v2-m3. Pointing it at Qwen3-Reranker-8B means registering that
    // model as a custom reranker plugin and naming it in feature_uri, which is an
    // Enterprise path. Stage contract read from GET /v1/discovery/stages.
    const retriever = await mx.retrievers.create({
      namespace_id: "my-namespace",
      retriever_name: "search-then-rerank",
      stages: [
        {
          stage_name: "candidates",
          stage_id: "feature_search",
          parameters: { limit: 100 },
        },
        {
          stage_name: "rerank_results",
          stage_id: "rerank",
          parameters: {
            inference_name: "BAAI__bge_reranker_v2_m3",
            query: "{{INPUT.query}}",
            document_field: "content",
            top_k: 10,
          },
        },
      ],
    });

    Capabilities

    • Full bidirectional cross-attention between query and document
    • Instruction-tuned for task-specific relevance criteria
    • 100+ language support
    • 32K context window for reranking long documents
    • #1 on MTEB-R reranking benchmark (69.76)

    Use Cases on Mixpeek

    Second-stage reranking in RAG pipelines for precision improvement
    Multilingual document reranking for cross-language search
    Long-document relevance scoring without chunking
    Instruction-conditioned ranking for domain-specific retrieval

    Benchmarks

    DatasetMetricScoreSource
    MTEB-R (overall)Score69.76Qwen, 2026: MTEB Leaderboard

    Performance

    Input SizeUp to 32K tokens (query + document)
    GPU Latency~85ms / pair (A100)
    GPU Throughput~12 pairs/sec (A100)
    GPU Memory~16 GB

    Specification

    FrameworkHF
    OrganizationQwen
    FeatureReranking
    OutputRelevance score per candidate
    Modalities
    RetrieverCross-Modal Reranker
    Parameters8B
    LicenseApache 2.0
    Downloads/mo1.8M

    Research Paper

    Qwen3-Embedding: Advancing Text and Multimodal Retrieval

    arxiv.org

    Build a pipeline with Qwen3-Reranker-8B

    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