NEWVectors or files. Pick a path.Start →
    Models/Embeddings/google/siglip2-giant-opt-patch16-384
    HFVisual Embeddingsapache-2.0

    siglip2-giant-opt-patch16-384

    by google

    Multilingual vision-language encoder with dense features and localization

    2.6Mdl/month
    43likes
    1.9Bparams
    Identifiers
    Model ID
    google/siglip2-giant-opt-patch16-384
    Feature URI
    mixpeek://image_extractor@v1/google_siglip2_giant_v1

    Overview

    SigLIP 2 extends the sigmoid contrastive objective with captioning-based pretraining, self-supervised losses, and online data curation into a unified recipe. It produces stronger vision-language encoders with significantly improved localization and dense feature quality.

    On Mixpeek, SigLIP 2 provides the strongest zero-shot visual embeddings from Google, achieving 85.0% ImageNet accuracy at the giant scale. Its improved spatial understanding makes it ideal for tasks requiring localization alongside retrieval.

    Architecture

    Vision Transformer (ViT-g) with ~1B parameters at 384px resolution. Combines sigmoid contrastive loss with captioning, self-distillation, and masked prediction objectives. Supports multi-resolution and native aspect ratio inputs.

    Mixpeek SDK Integration

    // No extractor parameter takes a Hugging Face model id (checked against
    // GET /v1/discovery/extractors, which returns 13), so siglip2-giant-opt-patch16-384 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

    • 85.0% ImageNet zero-shot accuracy (ViT-g, 384px)
    • Strong localization and dense spatial features
    • Multilingual understanding with de-biasing
    • Multi-resolution and native aspect ratio support
    • Excellent VLM backbone (PaLI, Gemini)

    Use Cases on Mixpeek

    Cross-modal search with multilingual text queries
    Visual grounding and localization tasks
    High-accuracy zero-shot visual classification
    Foundation encoder for vision-language applications

    Benchmarks

    DatasetMetricScoreSource
    ImageNet zero-shotTop-1 Accuracy83.4%SigLIP2 model card
    COCO (text→image)Recall@145.3%SigLIP2 model card

    Performance

    Input Size384×384 px
    Embedding Dim1152
    GPU Latency~22ms / image (A100)
    CPU Latency~280ms / image
    GPU Throughput~45 images/sec (A100)
    GPU Memory~4.2 GB

    1.1B params: giant variant for highest accuracy

    Specification

    FrameworkHF
    Organizationgoogle
    FeatureVisual Embeddings
    Output768-dim vector
    Modalitiesvideo, image
    RetrieverVector Search
    Parameters1.9B
    Licenseapache-2.0
    Downloads/mo2.6M
    Likes43

    Research Paper

    SigLIP 2: Multilingual Vision-Language Encoders with Improved Semantic Understanding, Localization, and Dense Features

    arxiv.org

    Build a pipeline with siglip2-giant-opt-patch16-384

    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