NEWVectors or files. Pick a path.Start →
    Models/Reranking/cross-encoder/ettin-reranker-68m-v1
    HFRerankingApache 2.0

    ettin-reranker-68m-v1

    by cross-encoder

    68M-param cross-encoder reranker balancing accuracy and speed

    N/Adl/month
    68Mparams
    Identifiers
    Model ID
    cross-encoder/ettin-reranker-68m-v1
    Feature URI
    mixpeek://reranker@v1/cross_encoder_ettin_68m_v1

    Overview

    Ettin Reranker 68M is the mid-size model in the Ettin family, built on the ModernBERT encoder architecture and distilled from mxbai-rerank-large-v2. It provides a balance between the tiny 17M/32M variants and the larger 150M/400M/1B models, making it suitable for latency-sensitive production workloads that still need strong reranking quality.

    Architecture

    Cross-encoder architecture using ModernBERT as the backbone. Concatenates query and document into a single input sequence, processes through bidirectional attention layers, and outputs a single relevance score. Trained via knowledge distillation from larger reranking models with margin-MSE loss.

    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: "s3",
        version: "v1",
        parameters: { model_id: "mixpeek://text_extractor@v1/baai_bge_large_v1" },
      },
    });

    Capabilities

    • Text reranking
    • Cross-encoder relevance scoring
    • Search result refinement
    • RAG passage reranking

    Use Cases on Mixpeek

    Production search reranking with moderate latency budgets
    RAG pipeline second-stage scoring
    E-commerce result refinement
    Real-time document retrieval reranking

    Benchmarks

    DatasetMetricScoreSource
    BEIR (avg)nDCG@1056.8Model card

    Performance

    Input SizeVariable
    GPU Latency~4ms per query-doc pair on A100
    GPU Throughput~250 pairs/sec
    GPU MemoryModel dependent

    Specification

    FrameworkHF
    Organizationcross-encoder
    FeatureReranking
    OutputRelevance score per candidate
    Modalities
    RetrieverCross-Modal Reranker
    Parameters68M
    LicenseApache 2.0
    Downloads/moN/A

    Research Paper

    Model paper or technical report

    arxiv.org

    Build a pipeline with ettin-reranker-68m-v1

    Add this model to a processing pipeline alongside other extractors. Combine with retrieval stages for end-to-end search.

    Run on your data