🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)
🔧 AI Nachrichten Major AI platforms go down in unprecedented simultaneous outage(03.09.2026 um 17:34 Uhr)
🔧 AI Nachrichten ChatGPT, Claude, and Grok Down? Users Report Widespread Outages(03.09.2026 um 19:14 Uhr)
🔧 AI Nachrichten OpenAI Launches GPT-6 Astra, Says We May Have Entered the AGI Era(03.09.2026 um 22:08 Uhr)
🔧 AI Nachrichten Claude Comes to CarPlay as Fifth Major AI Chatbot App(05.09.2026 um 05:31 Uhr)
🔧 AI Nachrichten OpenAI’s GPT-6 Astra Is AGI, Says NVIDIA CEO Jensen Huang(07.09.2026 um 06:31 Uhr)
🔧 AI Nachrichten Blame AI companies for Mac mini and Mac Studio shortage(31.08.2026 um 10:32 Uhr)

🔧 Programmierung 🕛 kürzlich 5 Min Lesezeit
0

I-JEPA: the Shift Away From Pixel-Level Learning in Computer Vision from Yann LeCun

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht




[Paper Notes] JEPA: Self-Supervised Learning from Images with a Joint-Embedding Predictive Architecture





⭕ EMA (Exponential moving avg.): Update target encoder parameters from the EMA of context encoders. This 'delays' the target encoder to prevent collapsing (a trick from the BYOL paper[2020], proven essential to training JEAs with ViT).







2. Model & High-Level Intuitions






2.1 Model Architecture



alt text



Input: randomly samples block masks from original image within certain aspect ratio changes, and apply mask for context image






2.1.2 Context



Context Encoder: ViT encodes context image to embedding


SxS_xSx


Mask Token: an [1,D] randomly initialized shared learnable vector

MMM

, values are used where it is a masked pactc (colored pacthes in the figure).
Positional embedding: [1,D] sinusoidal embedding

PEPEPE


Predictor: standard ViT, inputs masked token, context embedding and positional embedding for




gϕ(M+PE+Sx)=y^
g_{\phi}(M + PE + S_x) = \hat{y}
gϕ(M+PE+Sx)=y^







2.1.3 Target



Target Encoder: input original image and masked bbox to get corresponding embedding patches as

yyy

.





2.1.4 Loss & Training



The avg.

L2L_2L2

distance between predicted

y^\hat{y}y^

and target

yyy

.




L=1∣M∣∑(i,j)∈M∣gϕ(fθ(xv), PEi,j)−fξ(x)i,j∣2
\mathcal{L} = \frac{1}{|\mathcal{M}|} \sum_{(i,j) \in \mathcal{M}} \left| g_{\phi}(f_{\theta}(x_v),\ PE_{i,j}) - f_{\xi}(x)_{i,j} \right|^2
L=M1(i,j)Mgϕ(fθ(xv), PEi,j)fξ(x)i,j2




Where:



fθf_{\theta}fθ

— context encoder (trained), processes visible patches

xvx_vxv





fξf_{\xi}fξ

— target encoder (EMA), processes full image

xxx





gϕg_{\phi}gϕ

— predictor (trained), takes context representations + positional embedding of masked position





M\mathcal{M}M

— set of masked patch positions





PEi,jPE_{i,j}PEi,j

— positional embedding at masked position

(i,j)(i,j)(i,j)







Target encoder's EMA (parameters update not in loss by gradient descent, but direct update after each step):



ξt=αξt−1+(1−α)θt−1
\xi_t = \alpha \xi_{t-1} + (1-\alpha)\theta_{t-1}
ξt=αξt1+(1α)θt1






=(1−α)∑k=0tαkθt−k
= (1-\alpha)\sum_{k=0}^{t} \alpha^k \theta_{t-k}
=(1α)k=0tαkθtk




The weight of a past context encoder snapshot

θt−k\theta_{t-k}θtk

decays as

αk\alpha^kαk

— exponentially in how many steps ago it was. That's where the name comes from.



So with

α=0.996\alpha=0.996α=0.996

:



1 step ago: weight

=0.9961=0.996= 0.996^1 = 0.996=0.9961=0.996


100 steps ago: weight

=0.996100≈0.67= 0.996^{100} \approx 0.67=0.9961000.67


1000 steps ago: weight

=0.9961000≈0.02= 0.996^{1000} \approx 0.02=0.99610000.02






2.2 Intuitions



For anyone familiar with the encoder/decoder architecture pre-training, this paper's biggest innovation no doubt goes into it's self-supervision, the way of obtaining semantic information without labels. It jumped outside of 2 boxes:




  • mask reconstruction is 1:1

  • learning semantics needs labels.






2.2.1 Discover Image Semantics in the Context vs. Multi-Target Structure



It recognized the semantics exist in pixel structure and provide it to the model by multi context-to-target relationship (similar to data augmentation) combined with positional embedding. Essentially saying, given the context, here is what it misses in different locations, now the pixel & location variation of different mask patches in relation to the context image becomes the source of semantic information.






2.2.2 Target Encoder as Semantics Filter for Mask Reconstruction



While the context-to-target relation provides semantic, it learns low level semantic as it is equivalent to maximizing mutual information between the original and reconstructed image. But pixel data has high entropy from irrelevant details and reconstruction in pixel space never optimize towards compressing information.
Hence, I-JEPA's target encoder acts as a stochastic bottleneck, discarding unpredictable information from the target. In information theory,




max⁡ I(z^; fξ(x))
\max\ I(\hat{z};\ f_{\xi}(x))
max I(z^; fξ(x))




Rather than maximizing

I(z^; x)I(\hat{z};\ x)I(z^; x)

directly. Since

fξ(x)f_{\xi}(x)fξ(x)

already has low-level entropy compressed away, the predictor only needs to capture what's semantically predictable — the mutual information that survives the encoder bottleneck.
Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
3 Quellen
GPT-6 Astra Release Today? OpenAI’s Next Major AI Model Is Almost Here
1 Quelle
Apple accuses OpenAI of destroying evidence as trade-secrets fight intensifies
1 Quelle
Major AI platforms go down in unprecedented simultaneous outage
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten I-JEPA: the Shift Away From Pixel-Level Learning in Computer Vision from Yann LeCun

Thematisch verwandte Begriffe: IJEPA, Shift, Away, From · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...