Zubnet AIApprendreWiki › Self-Supervised Apprendreing
Training

Self-Supervised Apprendreing

SSL
Une approche d'entraînement où le modèle génère son propre signal de supervision à partir de données non étiquetées. L'astuce clé : cache une partie de l'entrée et entraîne le modèle à prédire la partie cachée. Pour les LLM, ça veut dire masquer le prochain token et le prédire. Pour les modèles de vision (comme DINO), ça veut dire masquer des patches d'image. Tu obtiens les bénéfices de l'apprentissage supervisé sans le coût des étiquettes humaines.

Pourquoi c'est important

L'apprentissage auto-supervisé est la percée qui a rendu l'IA moderne possible. C'est comme ça que les LLM apprennent le langage à partir de texte brut, comment BERT apprend à comprendre des phrases, et comment les modèles de vision apprennent à voir sans images étiquetées. Ça a débloqué la capacité de s'entraîner sur tout Internet au lieu d'être limité à des datasets étiquetés à la main et chers.

Deep Dive

The two dominant self-supervised approaches in NLP are causal language modeling (predict the next token, used by GPT/Claude/Llama) and masked language modeling (mask random tokens and predict them, used by BERT). Causal modeling produces generative models — they can write text. Masked modeling produces understanding models — they excel at classification, search, and analysis but can't generate fluently.

Why It Works So Well

Predicting the next token sounds trivial, but to do it well, a model must learn grammar, facts, reasoning, style, and even some common sense. If the text says "The capital of France is," the model needs world knowledge to predict "Paris." If it says "She picked up the ball and threw it to," the model needs to understand pronouns, physics, and social context. The simple objective of next-token prediction creates pressure to learn deeply about language and the world it describes.

Contrastive Apprendreing

In vision and embeddings, self-supervised learning often uses contrastive objectives: learn representations where similar items are close together and dissimilar items are far apart. CLIP (matching images to text descriptions), SimCLR (matching augmented views of the same image), and embedding models all use this approach. The supervision signal comes from the data structure itself — two crops of the same image should have similar representations, while crops of different images should not.

Concepts liés

← Tous les termes
← Self-Attention Semantic Search →