NEWVectors or files. Pick a path.Start →
    Models/Embeddings/facebook/vjepa2-vitl-fpc64-256
    HFVisual Embeddingsmit

    vjepa2-vitl-fpc64-256

    by facebook

    Self-supervised video encoder for retrieval, classification, and VLM perception

    297Kdl/month
    205likes
    326Mparams
    Identifiers
    Model ID
    facebook/vjepa2-vitl-fpc64-256
    Feature URI
    mixpeek://video_extractor@v1/facebook_vjepa2_vitl_fpc64_256_v1

    Deploy vjepa2-vitl-fpc64-256

    Single-tenant

    Mixpeek has no managed extractor for this model. On a single-tenant deployment you upload the weights and a custom plugin serves them next to the rest of your pipeline.

    Overview

    V-JEPA 2 is Meta FAIR's video representation model trained with a joint embedding predictive architecture. Instead of treating video as independent frames, it learns representations that preserve temporal structure, motion, and object dynamics.

    On Mixpeek, V-JEPA 2 is useful as a video feature extractor before retrieval or classification. It gives agents and search systems a compact representation of what happens over time, not just what appears in a sampled keyframe.

    Architecture

    Vision Transformer video encoder. The ViT-L FPC64 checkpoint samples 64 frames and exposes get_vision_features through Transformers. It can also encode still images by repeating the image across the expected frame dimension.

    Mixpeek SDK Integration

    // No extractor parameter takes a Hugging Face model id (checked against
    // GET /v1/discovery/extractors, which returns 13), so vjepa2-vitl-fpc64-256 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: { "multimodal-embedding": yourVector },
              payload: { source_key: "archive/2026/asset-00412" },
            },
          ],
        }),
      },
    );
    
    // Managed alternative, if this exact model is not the requirement:
    // multimodal_extractor@v2 runs google/gemini-embedding-2
    // (3072-d) over a bucket, with no inference of your own.

    Capabilities

    • Video feature extraction from 64-frame clips
    • Temporal representation for retrieval and classification
    • Can serve as a video encoder for downstream VLMs
    • MIT license

    Use Cases on Mixpeek

    Video similarity search across clips with comparable actions or motion
    Agent perception over camera streams where temporal state matters
    Pre-filtering long video into candidate clips before VLM captioning
    Action and activity classification for media archives

    Performance

    Input Size64 video frames at 256px
    GPU Latency~20ms / clip (A100, batch dependent)
    GPU Throughput~50 clips/sec (A100, batch dependent)
    GPU Memory~3 GB

    Use as a video feature stage, then rerank with captions or transcripts when precision matters

    Specification

    FrameworkHF
    Organizationfacebook
    FeatureVisual Embeddings
    Output768-dim vector
    Modalitiesvideo, image
    RetrieverVector Search
    Parameters326M
    Licensemit
    Downloads/mo297K
    Likes205

    Research Paper

    V-JEPA 2: Self-Supervised Video Models Enable Understanding, Prediction and Planning

    arxiv.org

    Build a pipeline with vjepa2-vitl-fpc64-256

    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