From 787a0128a92926c615b29abfa8dec40087c1d875 Mon Sep 17 00:00:00 2001 From: Dhruv Malik Date: Wed, 16 Jul 2025 21:40:22 +0200 Subject: [PATCH] create ijepa modelcard (ref : PR #36979 ). (#39354) * wip: adding first version of the IJEPA model card. * refactor based on the @stevhliu feedbacks * refactor: - revert the accidental removal of the autodoc api description and the image reerece architecture - general context updation. * - changes of model for example quantization. - merging the quantization content. --- docs/source/en/model_doc/ijepa.md | 116 +++++++++++++++++++++--------- 1 file changed, 81 insertions(+), 35 deletions(-) diff --git a/docs/source/en/model_doc/ijepa.md b/docs/source/en/model_doc/ijepa.md index 02c05b0bdd..146b673732 100644 --- a/docs/source/en/model_doc/ijepa.md +++ b/docs/source/en/model_doc/ijepa.md @@ -1,4 +1,4 @@ - -# I-JEPA - -
-PyTorch -FlashAttention -SDPA +
+
+ PyTorch + FlashAttention + SDPA +
-## Overview +# I-JEPA -The I-JEPA model was proposed in [Image-based Joint-Embedding Predictive Architecture](https://huggingface.co/papers/2301.08243) by Mahmoud Assran, Quentin Duval, Ishan Misra, Piotr Bojanowski, Pascal Vincent, Michael Rabbat, Yann LeCun, Nicolas Ballas. -I-JEPA is a self-supervised learning method that predicts the representations of one part of an image based on other parts of the same image. This approach focuses on learning semantic features without relying on pre-defined invariances from hand-crafted data transformations, which can bias specific tasks, or on filling in pixel-level details, which often leads to less meaningful representations. +[I-JEPA](https://huggingface.co/papers/2301.08243) is a self-supervised learning method that learns semantic image representations by predicting parts of an image from other parts of the image. It compares the abstract representations of the image (rather than pixel level comparisons), which avoids the typical pitfalls of data augmentation bias and pixel-level details that don't capture semantic meaning. -The abstract from the paper is the following: +You can find the original I-JEPA checkpoints under the [AI at Meta](https://huggingface.co/facebook/models?search=ijepa) organization. +> [!TIP] +> This model was contributed by [jmtzt](https://huggingface.co/jmtzt). -This paper demonstrates an approach for learning highly semantic image representations without relying on hand-crafted data-augmentations. We introduce the Image- based Joint-Embedding Predictive Architecture (I-JEPA), a non-generative approach for self-supervised learning from images. The idea behind I-JEPA is simple: from a single context block, predict the representations of various target blocks in the same image. A core design choice to guide I-JEPA towards producing semantic representations is the masking strategy; specifically, it is crucial to (a) sample tar- get blocks with sufficiently large scale (semantic), and to (b) use a sufficiently informative (spatially distributed) context block. Empirically, when combined with Vision Transform- ers, we find I-JEPA to be highly scalable. For instance, we train a ViT-Huge/14 on ImageNet using 16 A100 GPUs in under 72 hours to achieve strong downstream performance across a wide range of tasks, from linear classification to object counting and depth prediction. - + - I-JEPA architecture. Taken from the original paper. -This model was contributed by [jmtzt](https://huggingface.co/jmtzt). -The original code can be found [here](https://github.com/facebookresearch/ijepa). +> Click on the I-JEPA models in the right sidebar for more examples of how to apply I-JEPA to different image representation and classification tasks. -## How to use +The example below demonstrates how to extract image features with [`Pipeline`] or the [`AutoModel`] class. -Here is how to use this model for image feature extraction: + + -```python +```py +import torch +from transformers import pipeline +feature_extractor = pipeline( + task="image-feature-extraction", + model="facebook/ijepa_vith14_1k", + device=0, + torch_dtype=torch.bfloat16 +) +features = feature_extractor("https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/pipeline-cat-chonk.jpeg", return_tensors=True) + +print(f"Feature shape: {features.shape}") + +``` + + + + +```py import requests import torch from PIL import Image from torch.nn.functional import cosine_similarity +from transformers import AutoModel, AutoProcessor -from transformers import AutoModel, AutoProcessor +url_1 = "http://images.cocodataset.org/val2017/000000039769.jpg" +url_2 = "http://images.cocodataset.org/val2017/000000219578.jpg" +image_1 = Image.open(requests.get(url_1, stream=True).raw) +image_2 = Image.open(requests.get(url_2, stream=True).raw) + +processor = AutoProcessor.from_pretrained("facebook/ijepa_vith14_1k") +model = AutoModel.from_pretrained("facebook/ijepa_vith14_1k", torch_dtype="auto", attn_implementation="sdpa") + + +def infer(image): + inputs = processor(image, return_tensors="pt") + outputs = model(**inputs) + return outputs.last_hidden_state.mean(dim=1) + + +embed_1 = infer(image_1) +embed_2 = infer(image_2) + +similarity = cosine_similarity(embed_1, embed_2) +print(similarity) +``` + + + + +Quantization reduces the memory burden of large models by representing the weights in a lower precision. Refer to the [Quantization](../quantization/overview) overview for more available quantization backends. +The example below uses [bitsandbytes](../quantization/bitsandbytes) to only quantize the weights to 4-bits. + +```py +import torch +from transformers import BitsAndBytesConfig, AutoModel, AutoProcessor +from datasets import load_dataset + +quantization_config = BitsAndBytesConfig( + load_in_4bit=True, + bnb_4bit_quant_type="nf4", + bnb_4bit_compute_dtype=torch.bfloat16, + bnb_4bit_use_double_quant=True, +) url_1 = "http://images.cocodataset.org/val2017/000000039769.jpg" url_2 = "http://images.cocodataset.org/val2017/000000219578.jpg" image_1 = Image.open(requests.get(url_1, stream=True).raw) image_2 = Image.open(requests.get(url_2, stream=True).raw) -model_id = "facebook/ijepa_vith14_1k" -processor = AutoProcessor.from_pretrained(model_id) -model = AutoModel.from_pretrained(model_id) +processor = AutoProcessor.from_pretrained("facebook/ijepa_vitg16_22k") +model = AutoModel.from_pretrained("facebook/ijepa_vitg16_22k", quantization_config=quantization_config, torch_dtype="auto", attn_implementation="sdpa") + -@torch.no_grad() def infer(image): inputs = processor(image, return_tensors="pt") outputs = model(**inputs) @@ -74,15 +128,6 @@ similarity = cosine_similarity(embed_1, embed_2) print(similarity) ``` -## Resources - -A list of official Hugging Face and community (indicated by 🌎) resources to help you get started with I-JEPA. - - - -- [`IJepaForImageClassification`] is supported by this [example script](https://github.com/huggingface/transformers/tree/main/examples/pytorch/image-classification) and [notebook](https://colab.research.google.com/github/huggingface/notebooks/blob/main/examples/image_classification.ipynb). -- See also: [Image classification task guide](../tasks/image_classification) - ## IJepaConfig [[autodoc]] IJepaConfig @@ -95,4 +140,5 @@ A list of official Hugging Face and community (indicated by 🌎) resources to h ## IJepaForImageClassification [[autodoc]] IJepaForImageClassification - - forward \ No newline at end of file + - forward +