vjepa2-vitl-fpc64-256
by facebook
Self-supervised video encoder for retrieval, classification, and VLM perception
facebook/vjepa2-vitl-fpc64-256mixpeek://video_extractor@v1/facebook_vjepa2_vitl_fpc64_256_v1Deploy vjepa2-vitl-fpc64-256
Single-tenantMixpeek 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
Performance
Use as a video feature stage, then rerank with captions or transcripts when precision matters
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
V-JEPA 2: Self-Supervised Video Models Enable Understanding, Prediction and Planning
arxiv.orgBuild 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