A ideia de atenção
Permita que o modelo se concentre no que importa.
A ideia de atenção é uma aula grátis de NLP Academy no CoddyKit. Esta é a aula 1 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de NLP Academy, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de NLP Academy inclui 4 aulas no total.
Partes desta aula ainda não foram traduzidas e aparecem em inglês.
Why Attention?
When you read a sentence, you do not weigh every word equally. Attention gives a model that same power to focus on what matters. 🎯
The Bottleneck Problem
Older models squeezed a whole sentence into one fixed vector. That bottleneck lost detail, especially for long inputs that carry many ideas.
Look Back at Everything
Instead of one summary vector, attention lets the model look back at every input word whenever it needs to, picking what is relevant right now.
Attention as Weights
Attention assigns each word a weight between 0 and 1. Higher weight means more focus; the weights for one step always add up to 1.
A Weighted Average
The output is a weighted average of the input vectors. Words with big weights shape the result; words with tiny weights barely matter.
weights = [0.7, 0.2, 0.1]
output = sum(w * v for w, v in zip(weights, vectors))Translation Example
Translating "the cat sat" into French, the model can align each output word to the right source word instead of guessing from one blob.
Soft, Not Hard
Attention is soft: it spreads focus across all words by degree, rather than hard-picking just one. That makes it smooth and trainable.
Computing Relevance
To set the weights, the model scores how relevant each word is to the current step, then turns those scores into a probability spread.
Softmax Turns Scores Into Weights
Raw scores can be any number, so softmax squashes them into positive weights that sum to 1 and emphasize the largest score.
import numpy as np
def softmax(s):
e = np.exp(s - np.max(s))
return e / e.sum()Handling Long Inputs
Because it can reach any word directly, attention keeps long-range links intact. The first word can still influence the last with no decay.
Why It Changed NLP
Attention freed models from reading strictly in order. That single idea became the foundation of the Transformer and modern language models. 🚀
Quick Check
Let us check the core intuition behind attention.
Recap
You learned that attention weights every input word by relevance and blends them into a focused output. That focus is what powers modern NLP. ✨
Perguntas Frequentes
A aula “A ideia de atenção” é grátis?
Sim — o texto completo de “A ideia de atenção” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de NLP Academy, atualize para CoddyKit PRO. O curso de NLP Academy inclui 4 aulas no total.
O que vou aprender em “A ideia de atenção”?
Permita que o modelo se concentre no que importa. Você pratica NLP Academy com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.
Preciso ter experiência prévia para começar NLP Academy?
Nenhuma experiência prévia é necessária. NLP Academy no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 1 de 4.
Quanto tempo leva a aula “A ideia de atenção”?
A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.
Posso escrever e executar código nesta aula de NLP Academy?
Sim. Cada aula de NLP Academy inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.
Todas as aulas deste curso
- A ideia de atenção
- Autoatenção, passo a passo
- Atenção multicabeças e posições
- Por dentro do bloco Transformer