siglip2-giant-opt-patch16-384
by google
Multilingual vision-language encoder with dense features and localization
google/siglip2-giant-opt-patch16-384mixpeek://image_extractor@v1/google_siglip2_giant_v1Overview
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
Benchmarks
| Dataset | Metric | Score | Source |
|---|---|---|---|
| ImageNet zero-shot | Top-1 Accuracy | 83.4% | SigLIP2 model card |
| COCO (text→image) | Recall@1 | 45.3% | SigLIP2 model card |
Performance
1.1B params: giant variant for highest accuracy
Common Pipeline Companions
Explore on Mixpeek
Compare alternatives in this category
Hand-picked tools & platforms compared
Deep-dive technical guide
See how Mixpeek runs models as extractors
Store & search embeddings at scale
Usage-based pricing for pipelines
Compare models, APIs & infrastructure
Specification
Research Paper
SigLIP 2: Multilingual Vision-Language Encoders with Improved Semantic Understanding, Localization, and Dense Features
arxiv.orgBuild 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