NEWVectors or files. Pick a path.Start →
    Models/Embeddings/nomic-ai/nomic-embed-vision-v1.5
    HFVisual EmbeddingsApache 2.0

    nomic-embed-vision-v1.5

    by nomic-ai

    Compact image embedding model aligned to Nomic's text embedding space

    Identifiers
    Model ID
    nomic-ai/nomic-embed-vision-v1.5
    Feature URI
    mixpeek://image_extractor@v1/nomic_embed_vision_v15

    Overview

    Nomic Embed Vision v1.5 is a high-download image embedding model built to share an embedding space with Nomic Embed Text v1.5. That makes it useful for text-to-image retrieval without running a large vision-language model for every image.

    On Mixpeek, it fits high-volume image and video-frame search where an agent needs fast first-stage recall. Use it to retrieve candidate frames, product images, screenshots, or visual evidence before a VLM inspects the short list.

    Architecture

    Vision embedding model with a locked text-embedding alignment strategy similar to LiT. The Hugging Face model card lists 92.9M parameters, Apache 2.0 licensing, and image-feature-extraction support through Transformers with custom code.

    Mixpeek SDK Integration

    // No extractor parameter takes a Hugging Face model id (checked against
    // GET /v1/discovery/extractors, which returns 13), so nomic-embed-vision-v1.5 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

    • Image embeddings aligned with Nomic Embed Text v1.5
    • Text-to-image and image-to-image retrieval
    • Compact 92.9M parameter footprint
    • Apache 2.0 license for production-friendly use
    • Useful first-stage recall before multimodal reranking

    Use Cases on Mixpeek

    Index image catalogs for natural-language search
    Retrieve video keyframes before captioning or VLM reasoning
    Search screenshots by UI or visual state
    Build low-cost candidate generation for agent visual memory

    Benchmarks

    DatasetMetricScoreSource
    ImageNet zero-shotAccuracy71.0Nomic model card
    Datacomp averageScore56.8Nomic model card
    Hugging FaceMonthly downloads1.3MHF model card, June 2026

    Performance

    Input SizeImages or sampled video frames
    GPU LatencyInput dependent
    GPU ThroughputBatch dependent
    GPU MemoryCompact vision encoder

    Use as a candidate generator before a heavier VLM or multimodal reranker

    Specification

    FrameworkHF
    Organizationnomic-ai
    FeatureVisual Embeddings
    Output768-dim vector
    Modalitiesvideo, image
    RetrieverVector Search
    Parameters92.9M
    LicenseApache 2.0
    Downloads/mo1.3M

    Research Paper

    Nomic Embed Vision: Expanding the Latent Space

    arxiv.org

    Build a pipeline with nomic-embed-vision-v1.5

    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