NEWVectors or files. Pick a path.Start →
    Models/Embeddings/nvidia/nemotron-colembed-vl-8b-v2
    HFVisual Embeddingscc-by-nc-4.0

    nemotron-colembed-vl-8b-v2

    by nvidia

    State-of-the-art late-interaction visual document retrieval

    9Kdl/month
    50likes
    8.8Bparams
    Identifiers
    Model ID
    nvidia/nemotron-colembed-vl-8b-v2
    Feature URI
    mixpeek://image_extractor@v1/nvidia_nemotron_colembed_vl_8b_v2

    Overview

    Nemotron ColEmbed VL is an 8B-parameter ColBERT-style multi-vector embedding model built on Qwen3-VL-8B-Instruct. It produces per-token embeddings for both queries and documents, enabling fine-grained matching between query terms and document regions. This late-interaction approach is particularly powerful for visual document retrieval, where different parts of a document page (headers, tables, figures) need to match different parts of a query.

    The model ranks #1 on ViDoRe V3, the visual document retrieval benchmark, with a score of 63.54 -- surpassing ColPali and ColQwen variants.

    Architecture

    ColBERT-style architecture on top of Qwen3-VL-8B-Instruct. Produces multi-vector representations (one vector per token) rather than single-vector embeddings. Matching uses MaxSim: for each query token, find the maximum similarity to any document token, then sum across query tokens.

    Mixpeek SDK Integration

    // No extractor parameter takes a Hugging Face model id (checked against
    // GET /v1/discovery/extractors, which returns 13), so nemotron-colembed-vl-8b-v2 runs
    // on your side and the output is upserted through POST
    // /v1/namespaces/{namespace_id}/documents/upsert. On Enterprise the other
    // path is to upload the weights instead: POST /v1/namespaces/{id}/models
    // accepts the huggingface format and a custom plugin loads them.
    const res = await fetch(
      "https://api.mixpeek.com/v1/namespaces/ns_your_namespace/documents/upsert",
      {
        method: "POST",
        headers: {
          Authorization: "Bearer API_KEY",
          "Content-Type": "application/json",
        },
        body: JSON.stringify({
          collection_id: "col_your_collection",
          documents: [
            {
              document_id: "asset-00412",
              // The vector name has to match a vector index on the collection.
              vectors: { "image-embedding": yourVector },
              payload: { source_key: "archive/2026/asset-00412" },
            },
          ],
        }),
      },
    );
    
    // Managed alternative, if this exact model is not the requirement:
    // image_extractor@v1 runs google/siglip-base-patch16-224
    // (768-d) over a bucket, with no inference of your own.

    Capabilities

    • Multi-vector (ColBERT-style) embeddings for fine-grained matching
    • #1 on ViDoRe V3 visual document retrieval benchmark
    • Handles mixed-content documents: text, tables, charts, figures
    • Supports both text queries and image queries
    • Per-token matching enables localization of relevant document regions

    Use Cases on Mixpeek

    Visual document search: find specific pages in PDF libraries using natural language
    Invoice and form extraction: locate specific fields across document layouts
    Technical documentation retrieval: match queries to diagrams, code blocks, and text simultaneously
    Legal document discovery: find relevant clauses across diverse document formats

    Benchmarks

    DatasetMetricScoreSource
    ViDoRe V3NDCG@563.54https://huggingface.co/nvidia/nemotron-colembed-vl-8b-v2

    Specification

    FrameworkHF
    Organizationnvidia
    FeatureVisual Embeddings
    Output768-dim vector
    Modalitiesvideo, image
    RetrieverVector Search
    Parameters8.8B
    Licensecc-by-nc-4.0
    Downloads/mo9K
    Likes50

    Research Paper

    Nemotron ColEmbed VL

    arxiv.org

    Build a pipeline with nemotron-colembed-vl-8b-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