Language model ๐ด Exam-core
A model that assigns probabilities to token sequences and usually predicts the next token.
Reason: The whole course repeatedly reduces generation to predicting likely token sequences.
Offline HTML studybook for Alex. Generated 2026-06-07 from the folder Gen-AI-w-Transformers.
This is a reconstructed coursebook, not a slide summary. Exam relevance labels are evidence-based estimates from repetition, formulas, algorithms, exercises, and standard field importance; they are not guarantees about the real exam.
๐ด Exam-core ๐ Exam-practical ๐ก Context โช Low priority ๐๏ธ Slide noise
This course is a reconstruction of the path from simple probability-based text generators to modern Transformer-based large language models. The through-line is next-token prediction over tokenized text, plus the representation, architecture, training, and system tricks needed to make that prediction useful at scale.
The slides begin with ChatGPT-era motivation, but the exam-shaped core is technical: how tokens become vectors, how sequence models compute context, how attention works, how Transformer blocks are wired, and how modern LLMs adapt, scale, and fail.
This dashboard is an evidence-based estimate, not a promise about the actual exam.
| Priority | Topic | Why it matters | Source evidence | Study action |
|---|---|---|---|---|
| ๐ด Exam-core | Attention | A mechanism that computes weighted combinations of values based on query-key compatibility. | Lecture 5 pp. 18-23; lecture 6 pp. 55-80. | Repeated across lectures and is the conceptual bridge to Transformers. |
| ๐ด Exam-core | Causal mask | A mask that blocks each position from attending to future tokens. | Lecture 6 pp. 85-89; lecture 8 pp. 40-42. | Key distinction between encoder-style and decoder-style attention. |
| ๐ด Exam-core | Cross-entropy loss | The negative log-probability assigned to the correct class/token. | Lecture 7 pp. 25-31; lecture 8 pp. 27-30. | Lecture 7 walks through next-token loss and backpropagation. |
| ๐ด Exam-core | Decoder-only Transformer | A causal Transformer that predicts the next token from past tokens. | Lecture 8 pp. 34-44. | Core architecture for GPT-style LLMs and generation. |
| ๐ด Exam-core | Encoder-decoder | An architecture where an encoder maps an input sequence to states and a decoder produces an output sequence. | Lecture 5 pp. 10-17; lecture 8 pp. 3-13. | The architecture directly precedes attention and Transformer families. |
| ๐ด Exam-core | Encoder-only Transformer | A bidirectional Transformer stack used for representations and classification-style tasks. | Lecture 8 pp. 15-33. | Lecture 8 distinguishes model families and MLM examples. |
| ๐ด Exam-core | Feed-forward network in Transformers | A position-wise MLP applied independently to each token after attention. | Lecture 6 pp. 90-97; lecture 7 pp. 15-20. | Important complement to attention and the place MoE usually replaces. |
| ๐ด Exam-core | Fine-tuning | Continue training a pretrained model on task-specific data. | Lecture 8 pp. 98-106; transformer practical. | Lecture 8 and practical scripts directly cover model adaptation. |
| ๐ด Exam-core | Language model | A model that assigns probabilities to token sequences and usually predicts the next token. | Lecture 2 pp. 3-43; lecture 4 pp. 4-25; lecture 6 pp. 106-119. | The whole course repeatedly reduces generation to predicting likely token sequences. |
| ๐ด Exam-core | Layer normalization and residuals | Residual paths add inputs back; layer norm stabilizes activation scale. | Lecture 6 pp. 98-103; lecture 7 pp. 14, 20. | Needed to explain stable deep Transformer training. |
| ๐ด Exam-core | LoRA | A parameter-efficient method that freezes W and trains a low-rank update BA. | Lecture 8 pp. 101-106. | Lecture 8 gives formula slides and adaptation motivation. |
| ๐ด Exam-core | Markov property | The next state/token is assumed to depend only on a limited current state, not the full history. | Lecture 2 pp. 4-20; Markov practical archive. | Central in the first real modeling lecture and needed to understand context limits. |
| ๐ด Exam-core | Masked language modeling | A pretraining task where selected tokens are hidden and predicted from bidirectional context. | Lecture 8 pp. 21-30; transformer practical. | Lecture 8 gives a worked input/label/loss example and practical scripts implement it. |
| ๐ด Exam-core | Mixture of Experts | A sparse layer that routes tokens to a small subset of expert networks. | Lecture 7 pp. 79-89; lecture 8 pp. 55-84; MoE practical. | Repeated across lectures 7 and 8 with architecture and training slides. |
| ๐ด Exam-core | Multi-head attention | Several attention heads run in parallel, then concatenate and project their outputs. | Lecture 6 pp. 76-84; lecture 7 pp. 8-13. | Core Transformer component, repeated in lecture 6 and recapped in lecture 7. |
| ๐ด Exam-core | N-gram model | A language model that approximates P(w_t | history) using only the previous n-1 tokens. | Lecture 2 pp. 20-43. | Standard baseline and likely calculation/explanation material. |
| ๐ด Exam-core | Perplexity | Exponentiated average negative log-likelihood; lower is better for a fixed test set/tokenization. | Lecture 2 p. 39; Markov practical. | Explicitly introduced as model-quality measure and standard LM evaluation. |
| ๐ด Exam-core | Positional encoding | A signal added or applied to token representations so the model can use order. | Lecture 6 pp. 27-47; lecture 7 pp. 43-60. | The slides devote a long sequence to why attention needs position information. |
| ๐ด Exam-core | Q/K/V projections | Learned projections that create queries, keys, and values from token representations. | Lecture 6 pp. 61-65; lecture 7 pp. 8-13. | Slides and practicals emphasize the matrices and their roles. |
| ๐ด Exam-core | RNN | A neural network that updates a hidden state while processing a sequence step by step. | Lecture 4 pp. 16-21; lecture 5 pp. 3-9; RNN practical. | Needed to understand why attention and Transformers replaced recurrence. |
| ๐ด Exam-core | Scaled dot-product attention | Attention(Q,K,V)=softmax(QK^T/sqrt(d_k))V. | Lecture 6 pp. 64-75. | Formula/procedure likely to be examined. |
| ๐ด Exam-core | Softmax | A function that turns logits into a normalized probability distribution. | Lecture 4 pp. 9-11; lecture 6 pp. 65, 106-114; lecture 7 pp. 24-30. | Used for class probabilities, attention weights, MLM, and next-token distributions. |
| ๐ด Exam-core | Tokenization | Splitting text into model vocabulary units and mapping them to integer IDs. | Lecture 3 pp. 10-15; lecture 7 pp. 33-34; transformer practical. | Every later model consumes token IDs, and the slides/practicals revisit it repeatedly. |
| ๐ด Exam-core | Transformer block | A stackable layer containing attention, residual/add-norm structure, and a position-wise FFN. | Lecture 6 pp. 47-121; lecture 7 pp. 2-32. | The dominant architecture and the longest slide deck. |
| ๐ด Exam-core | Word embedding | A dense vector representation of a token or text item in a continuous space. | Lecture 3 pp. 6-48; lecture 6 pp. 18-26. | Repeated in lectures 3, 4, 6, 7, and 8 as the bridge from text to neural computation. |
| ๐ด Exam-core | Word2Vec | A family of shallow neural models, CBOW and skip-gram, for learning word vectors from context. | Lecture 3; Word2Vec practical. | Dedicated lecture/practical material and canonical embedding method. |
| ๐ Exam-practical | Bag-of-words | A document representation that counts token occurrences and ignores order. | Lecture 3 pp. 10-12. | Useful baseline for understanding sparse representations, but not the final architecture. |
| ๐ Exam-practical | FlashAttention | An exact attention algorithm that reduces memory traffic using tiling and online softmax. | Lecture 7 pp. 75-76. | Modern technique named in lecture 7; understand the bottleneck, not implementation minutiae. |
| ๐ Exam-practical | Greedy decoding | Choose the highest-probability token at each generation step. | Lecture 6 pp. 106-114. | Lecture 6 gives a concrete next-token example; useful for exercises. |
| ๐ Exam-practical | Grouped-query attention | Attention with many query heads sharing fewer key/value heads. | Lecture 7 pp. 61-69. | Appears as serving efficiency technique with KV-cache memory savings. |
| ๐ Exam-practical | Hallucination | A fluent model output that is unsupported, false, or not grounded in the requested evidence. | Lecture 1 p. 8. | Lecture 1 highlights it as a core problem of generative models. |
| ๐ Exam-practical | KV cache | Stored key/value tensors from previous tokens used to avoid recomputing attention history during decoding. | Lecture 7 pp. 36-42, 61-69. | Lecture 7 uses it to explain long-context serving bottlenecks. |
| ๐ Exam-practical | LSTM | A gated recurrent network designed to preserve information over longer spans. | Lecture 4 pp. 22-24; bidirectional LSTM practical. | Explicit RNN extension and practical material, but less central than Transformers. |
| ๐ Exam-practical | RAG | Retrieval-augmented generation conditions a generator on retrieved external documents. | Lecture 1 p. 11. | Introduced in lecture 1 as a concrete mitigation for hallucination. |
| ๐ Exam-practical | RoPE | Rotary positional embedding rotates query/key vector pairs by position-dependent angles. | Lecture 7 pp. 43-60. | Lecture 7 includes detailed numeric walkthroughs. |
| ๐ Exam-practical | Scaling laws | Empirical relationships between loss, model size, dataset size, and compute. | Lecture 7 pp. 35-37. | Lecture 7 frames research trends with Chinchilla and compute/data trade-offs. |
| ๐ Exam-practical | TF-IDF | A weighting scheme that boosts terms frequent in a document but rare across the corpus. | Lecture 3; Word2Vec practical. | Appears as an embedding precursor and practical comparison point. |
| ๐ Exam-practical | Teacher forcing | During training, feed the decoder the true previous token instead of its own previous prediction. | Lecture 5 p. 16; lecture 8 p. 13. | Likely application/exam explanation material in seq2seq training. |
| ๐ก Context | RLHF/alignment | Training models toward human preferences, often by supervised fine-tuning plus preference optimization/RL. | Lecture 8 p. 45. | Only lightly visible in the extracted slides, but standard for LLM context. |
๐งญ This chapter teaches how simple language models assign probabilities to text, why the Markov assumption helps and hurts, and how model quality is measured.
๐ Why it matters: Transformers are powerful neural language models, but the basic question is already present in n-grams: given history, what token comes next?
A model that assigns probabilities to token sequences and usually predicts the next token.
Reason: The whole course repeatedly reduces generation to predicting likely token sequences.
The next state/token is assumed to depend only on a limited current state, not the full history.
Reason: Central in the first real modeling lecture and needed to understand context limits.
A language model that approximates P(w_t | history) using only the previous n-1 tokens.
Reason: Standard baseline and likely calculation/explanation material.
Exponentiated average negative log-likelihood; lower is better for a fixed test set/tokenization.
Reason: Explicitly introduced as model-quality measure and standard LM evaluation.
A language model estimates a probability distribution over token sequences. Exact history is impossible to count for realistic text, so classical models use a short window. A bigram uses one previous token; a trigram uses two. More context usually helps until the state space explodes and counts become sparse.
For a sequence wโ...w_T, the chain rule says P(wโ...w_T)=โโP(wโ|wโ...wโโโ). An n-gram model replaces the full history with the previous n-1 tokens. The estimate is usually a count ratio: how often did this next word follow this context?
Formal:
Meaning: Use corpus counts to estimate the next-token distribution for a short context.
Exam/application: Given a small corpus, count context occurrences and divide by context count.
Variables: w_t = current token; n = n-gram order; count(.) = corpus frequency.
Common mistake: Using the full sentence history when the model is only bigram/trigram.
Formal:
Meaning: Average surprise of the model on a test sequence.
Exam/application: Lower perplexity means the model assigned higher probability to the observed tokens, but compare only with the same tokenization/test set.
Variables: T = number of tokens; log may be natural log or base 2 with matching exponent.
Common mistake: Comparing perplexities across different tokenizers or test corpora as if they were identical.
Task: use a tiny bigram language model to score the test sequence W = "you like tea".
Bigram means: each next word only looks at the previous word. We predict 3 words, so N = 3.
| # | Sentence with boundary tokens |
|---|---|
| 1 | <s> you like tea </s> |
| 2 | <s> you like coffee </s> |
| 3 | <s> you drink tea </s> |
| 4 | <s> i like tea </s> |
| Context | Observed next words | Total context count |
|---|---|---|
<s> | you: 3, i: 1 | 4 |
you | like: 2, drink: 1 | 3 |
like | tea: 2, coffee: 1 | 3 |
Rule: P(next | context) = count(context, next) / count(context).
| Predicted word | Context used | Where it comes from | Probability |
|---|---|---|---|
you |
<s> |
3 of 4 corpus sentences start with you. |
P(you|<s>) = 3/4 = 0.75 |
like |
you |
After you, the corpus has like 2 times and drink 1 time. |
P(like|you) = 2/3 โ 0.667 |
tea |
like |
After like, the corpus has tea 2 times and coffee 1 time. |
P(tea|like) = 2/3 โ 0.667 |
P(W) = P(you|<s>) ยท P(like|you) ยท P(tea|like) = (3/4) ยท (2/3) ยท (2/3) = 1/3 โ 0.333
ppl(W) = P(W)-1/N = (1/3)-1/3 = 31/3 โ 1.442
Interpretation: on average, this model is as uncertain as choosing among about 1.44 equally likely next words at each step.
Exam trap: if the question includes </s> as a predicted token, also multiply by P(</s>|tea) and use the new token count N.
input: corpus tokens, order n, desired length L
build a table: context tuple -> counts of next tokens
choose an initial context
repeat until L tokens:
sample next token from counts(context)
append token
context = last n-1 tokens
output generated sequence
Be able to define the Markov property, write the n-gram approximation, compute a tiny count-based probability, explain state-space explosion, and define perplexity.
๐งฉ Connection: embeddings and neural LMs are attempts to escape brittle exact-count tables by learning smoother vector representations.
๐งญ This chapter teaches how raw text becomes vectors: tokenization, sparse count vectors, TF-IDF, and dense learned embeddings.
๐ Why it matters: every neural model in the course starts by turning discrete token IDs into continuous vectors.
Splitting text into model vocabulary units and mapping them to integer IDs.
Reason: Every later model consumes token IDs, and the slides/practicals revisit it repeatedly.
A document representation that counts token occurrences and ignores order.
Reason: Useful baseline for understanding sparse representations, but not the final architecture.
A weighting scheme that boosts terms frequent in a document but rare across the corpus.
Reason: Appears as an embedding precursor and practical comparison point.
A dense vector representation of a token or text item in a continuous space.
Reason: Repeated in lectures 3, 4, 6, 7, and 8 as the bridge from text to neural computation.
A family of shallow neural models, CBOW and skip-gram, for learning word vectors from context.
Reason: Dedicated lecture/practical material and canonical embedding method.
One-hot vectors identify tokens but say nothing about similarity. Bag-of-words and TF-IDF represent documents by token counts or weighted counts, but order and context are mostly lost. Dense embeddings compress distributional usage into a smaller vector space where nearby words tend to behave similarly.
Tokenization first defines the model's alphabet. Word-level tokenization suffers from huge vocabularies and unknown words. Subword methods such as BPE and WordPiece split rare words into reusable pieces, which is why modern Transformers can handle names, compounds, and morphology better than strict word vocabularies.
Formal:
Meaning: Weight a term by how common it is in one document and how rare it is across documents.
Exam/application: Use it to explain why a rare domain term may matter more than a frequent function word.
Variables: tf = term frequency; N = document count; df = documents containing term.
Common mistake: Treating TF-IDF as semantic understanding. It is still a sparse lexical signal.
Task: compare two representations on the same tiny corpus.
TF-IDF gives a weighted sparse document vector. Word2Vec creates dense vectors by learning from nearby-word prediction tasks.
| Doc | Text | Useful terms |
|---|---|---|
| D1 | transformer attention uses queries | transformer, attention, queries |
| D2 | attention helps encoder decoder | attention, encoder, decoder |
| D3 | coffee break after lecture | coffee, break, lecture |
| Term | tf in D1 | df | idf = ln(N/df) | tf-idf |
|---|---|---|---|---|
transformer | 1 | 1 | ln(3/1)=1.099 | 1.099 |
attention | 1 | 2 | ln(3/2)=0.405 | 0.405 |
queries | 1 | 1 | ln(3/1)=1.099 | 1.099 |
Because attention appears in two documents, it is down-weighted compared with rarer D1 terms.
| Center word | Nearby context target | Training signal |
|---|---|---|
attention | transformer | make their vectors score high together |
attention | queries | make their vectors score high together |
attention | encoder | make their vectors score high together |
attention | coffee | negative sample: push score down |
Word2Vec does not store the count table as the final representation; it updates dense vectors until useful words predict their contexts.
input: center word c, true context word o, negative words n_1...n_k
look up vectors v_c, u_o, u_n
maximize log ฯ(u_o ยท v_c)
maximize โ log ฯ(-u_n ยท v_c) for negatives
update vectors by gradient descent
output learned embedding matrix
Know one-hot vs BOW vs TF-IDF vs dense embeddings, explain CBOW vs skip-gram, and describe why embeddings are trainable lookup tables in neural models.
๐งฉ Connection: the Transformer embedding layer is the same core idea as learned word vectors, but trained end-to-end for the model objective.
๐งญ This chapter teaches how neural networks turn context vectors into token probabilities, and why RNN/LSTM models were a stepping stone.
๐ Why it matters: Transformers still use softmax/cross-entropy next-token training; they mainly replace how context representations are computed.
A function that turns logits into a normalized probability distribution.
Reason: Used for class probabilities, attention weights, MLM, and next-token distributions.
The negative log-probability assigned to the correct class/token.
Reason: Lecture 7 walks through next-token loss and backpropagation.
A neural network that updates a hidden state while processing a sequence step by step.
Reason: Needed to understand why attention and Transformers replaced recurrence.
A gated recurrent network designed to preserve information over longer spans.
Reason: Explicit RNN extension and practical material, but less central than Transformers.
A feed-forward neural language model embeds the last few tokens, concatenates them, passes them through hidden layers, then predicts the next token. RNNs remove the fixed window by carrying a hidden state through the sequence. LSTMs add gates to preserve useful information longer.
Formal:
Meaning: Convert logits into probabilities that sum to one.
Exam/application: Use softmax after output logits or attention scores.
Variables: z_i = logit for class/token i.
Common mistake: Calling logits probabilities before softmax.
Formal:
Meaning: Loss is small when the model assigns high probability to the correct token.
Exam/application: If the correct token probability is 0.8, loss is lower than if it is 0.05.
Variables: p(.) comes from softmax over logits.
Common mistake: Taking -log of the logit instead of the probability.
Task: after the context "for all the", compute the probability of the correct next token "people".
The model first emits logits. Softmax turns them into probabilities. Cross-entropy punishes low probability on the correct token.
| Candidate token | Logit z | exp(z) |
|---|---|---|
people | 2.0 | 7.389 |
models | 1.0 | 2.718 |
tea | -1.0 | 0.368 |
sum exp(z) = 7.389 + 2.718 + 0.368 = 10.475
P(people) = exp(2.0) / 10.475 = 0.705
L = -ln(P(correct)) = -ln(0.705) โ 0.350
Meaning: the loss is low because the correct token already has high probability. If the model assigned p=0.1, the loss would be -ln(0.1)=2.303.
h_t = f(x_t, h_{t-1})logits_t = U h_t + cp_t = softmax(logits_t)input: token sequence x_1...x_T
initialize hidden state h_0
for each t:
e_t = embedding[x_t]
h_t = activation(W_e e_t + W_h h_{t-1} + b)
logits_t = U h_t + c
p_t = softmax(logits_t)
train with cross-entropy against x_{t+1}
Be able to draw a feed-forward LM, explain RNN hidden-state recurrence, state the purpose of LSTM gates, and compute/interpret softmax cross-entropy.
๐งฉ Connection: seq2seq uses RNN encoders/decoders; attention then removes the need to compress the whole source into one final hidden state.
๐งญ This chapter teaches encoder-decoder models, teacher forcing, the bottleneck problem, and dot-product attention.
๐ Why it matters: attention was introduced to let the decoder look back at relevant source states instead of relying on one fixed vector.
An architecture where an encoder maps an input sequence to states and a decoder produces an output sequence.
Reason: The architecture directly precedes attention and Transformer families.
During training, feed the decoder the true previous token instead of its own previous prediction.
Reason: Likely application/exam explanation material in seq2seq training.
A mechanism that computes weighted combinations of values based on query-key compatibility.
Reason: Repeated across lectures and is the conceptual bridge to Transformers.
An encoder reads the input sequence and produces hidden states. A decoder generates the output sequence. Without attention, the decoder depends heavily on the final encoder state, creating a bottleneck. Attention computes a custom context vector at every decoding step.
Formal:
Meaning: Compare the decoder query to each source key, normalize scores, and blend source values.
Exam/application: Given small vectors, compute dot products, softmax weights, then weighted sum.
Variables: q = query; k_i = key/state to match; v_i = value/state to retrieve; ฮฑ_i = attention weight.
Common mistake: Forgetting that softmax is over all source positions, not independently per score.
Task: while generating the German target word "isst", decide which English source state matters most.
The decoder query is compared with every encoder key. Softmax converts those scores into attention weights.
| Source position | Role | Score q ยท k_i | exp(score) |
|---|---|---|---|
cat | subject | 0.4 | 1.492 |
eats | verb | 2.0 | 7.389 |
fish | object | 0.1 | 1.105 |
sum exp(score) = 1.492 + 7.389 + 1.105 = 9.986
alpha_eats = exp(2.0) / 9.986 = 0.740
context = 0.149ยทv_cat + 0.740ยทv_eats + 0.111ยทv_fish
Interpretation: this decoder step mostly retrieves the source verb state, so the target verb can be generated without compressing the whole source sentence into one final encoder vector.
input: previous target token, decoder state, encoder states h_1...h_n
q = current decoder state
for each source position i:
score_i = q ยท h_i
weights = softmax(score)
context = weighted_sum(weights, h)
new decoder state uses previous token + context
predict next target token
Know the encoder-decoder bottleneck, why attention fixes it, and how dot products become weights and a context vector.
๐งฉ Connection: Transformers remove recurrence and use attention among token representations inside each layer.
๐งญ This chapter teaches the Transformer block from token IDs to logits: embeddings, positional information, Q/K/V, scaled dot-product attention, multi-head attention, masks, FFN, residuals, normalization, training, and decoding.
๐ Why it matters: almost every modern LLM variation is a modification of this base block or its training/serving regime.
Learned projections that create queries, keys, and values from token representations.
Reason: Slides and practicals emphasize the matrices and their roles.
Attention(Q,K,V)=softmax(QK^T/sqrt(d_k))V.
Reason: Formula/procedure likely to be examined.
Several attention heads run in parallel, then concatenate and project their outputs.
Reason: Core Transformer component, repeated in lecture 6 and recapped in lecture 7.
A mask that blocks each position from attending to future tokens.
Reason: Key distinction between encoder-style and decoder-style attention.
A signal added or applied to token representations so the model can use order.
Reason: The slides devote a long sequence to why attention needs position information.
A stackable layer containing attention, residual/add-norm structure, and a position-wise FFN.
Reason: The dominant architecture and the longest slide deck.
A position-wise MLP applied independently to each token after attention.
Reason: Important complement to attention and the place MoE usually replaces.
Residual paths add inputs back; layer norm stabilizes activation scale.
Reason: Needed to explain stable deep Transformer training.
Choose the highest-probability token at each generation step.
Reason: Lecture 6 gives a concrete next-token example; useful for exercises.
Self-attention lets each token build a context-aware representation by looking at other tokens. Q/K/V projections separate matching from information transfer. Multi-head attention repeats this in several smaller subspaces. The FFN then transforms each token independently. Residual and normalization paths keep deep stacks trainable.
Formal:
Meaning: Rows of Q compare with rows of K; softmax creates attention weights; multiplying by V mixes information.
Exam/application: Be able to explain the shape flow: sequence length ร model dimension -> attention weights -> contextualized vectors.
Variables: Q,K,V are projected matrices; d_k is key/query head dimension.
Common mistake: Missing the scaling term or applying softmax over the wrong axis.
Formal:
Meaning: Provide unique, smooth position signals across dimensions.
Exam/application: Know why position is needed once recurrence is removed.
Variables: pos = token position; i = dimension pair index; d = model dimension.
Common mistake: Thinking attention knows order automatically. It does not without positional signal or equivalent design.
Task: trace one attention head for "the model predicts tokens".
Use sequence length 4, d_model = 8, and one head with d_k = 4.
| Object | Formula | Shape | Meaning |
|---|---|---|---|
X | embedding lookup | 4 ร 8 | one row per token |
Q | XW_Q | 4 ร 4 | what each token asks for |
K | XW_K | 4 ร 4 | what each token offers for matching |
V | XW_V | 4 ร 4 | information to mix |
QK^T | pairwise scores | 4 ร 4 | token-to-token compatibility |
AV | weighted sum | 4 ร 4 | contextualized rows |
Rows are querying tokens. Columns are tokens they may read. The upper-right future positions are blocked.
scores = QK^T / sqrt(d_k)A = softmax(scores), then head = AVinput: X with shape [sequence, d_model]
Q = X W_Q; K = X W_K; V = X W_V
scores = Q K^T / sqrt(d_k)
if decoder: add causal mask to scores
A = softmax(scores)
head = A V
MHA = concat(head_1...head_h) W_O
Y = LayerNorm(X + MHA)
Z = LayerNorm(Y + FFN(Y))
return Z
Be able to draw the Transformer block, explain Q/K/V, write the attention formula, explain causal masking, and describe how logits become a next-token prediction.
๐งฉ Connection: model families differ mostly by which blocks and masks they use and what objective they train on.
๐งญ This chapter teaches how encoder-only, decoder-only, and encoder-decoder Transformers differ by mask, objective, and task shape.
๐ Why it matters: many exam answers fail by saying โTransformerโ without specifying the family and objective.
A bidirectional Transformer stack used for representations and classification-style tasks.
Reason: Lecture 8 distinguishes model families and MLM examples.
A pretraining task where selected tokens are hidden and predicted from bidirectional context.
Reason: Lecture 8 gives a worked input/label/loss example and practical scripts implement it.
A causal Transformer that predicts the next token from past tokens.
Reason: Core architecture for GPT-style LLMs and generation.
| Family | Attention | Training objective | Typical use | Exam trap |
|---|---|---|---|---|
| Encoder-only | Bidirectional self-attention | MLM or representation learning | Classification, retrieval embeddings, tagging | It is not naturally left-to-right generative. |
| Decoder-only | Causal self-attention | Next-token prediction | Text generation, chat LMs | It cannot attend to future target tokens during training. |
| Encoder-decoder | Encoder bidirectional; decoder causal + cross-attention | Conditional generation | Translation, summarization | Cross-attention reads encoder states, not future target tokens. |
Task: prepare one masked-language-model training example from "the cat sat on mat".
Encoder-only models can use both left and right context, but the loss is computed only at selected masked positions.
| Position | Original token | Model input | Label for loss | Loss here? |
|---|---|---|---|---|
| 1 | the | the | -100 | No, ignored |
| 2 | cat | cat | -100 | No, ignored |
| 3 | sat | [MASK] | sat | Yes |
| 4 | on | on | -100 | No, ignored |
| 5 | mat | mat | -100 | No, ignored |
P(sat | the, cat, [MASK], on, mat)
The masked position can use both the cat on the left and on mat on the right.
L = -ln P_model(sat at masked position)
Unmasked positions are present as context, but their labels are ignored with -100 in many libraries.
input tokens: the cat sat on mat
choose masked position: sat
replace selected token with [MASK] or noise according to masking rule
labels = ignore everywhere except selected position
run bidirectional encoder
compute cross-entropy only at selected positions
For each model family, memorize: allowed attention pattern, objective, output shape, and natural tasks.
๐งฉ Connection: modern LLM discussion mostly focuses on decoder-only and sparse/dense variants, but encoder-only models are still important for embeddings and classification.
๐งญ This chapter teaches what modern techniques change: context length, serving memory, attention speed, capacity, activation functions, and sparse routing.
๐ Why it matters: these topics explain why production LLMs are not just the 2017 Transformer copied at larger scale.
Stored key/value tensors from previous tokens used to avoid recomputing attention history during decoding.
Reason: Lecture 7 uses it to explain long-context serving bottlenecks.
Rotary positional embedding rotates query/key vector pairs by position-dependent angles.
Reason: Lecture 7 includes detailed numeric walkthroughs.
Attention with many query heads sharing fewer key/value heads.
Reason: Appears as serving efficiency technique with KV-cache memory savings.
An exact attention algorithm that reduces memory traffic using tiling and online softmax.
Reason: Modern technique named in lecture 7; understand the bottleneck, not implementation minutiae.
A sparse layer that routes tokens to a small subset of expert networks.
Reason: Repeated across lectures 7 and 8 with architecture and training slides.
Empirical relationships between loss, model size, dataset size, and compute.
Reason: Lecture 7 frames research trends with Chinchilla and compute/data trade-offs.
| Technique | Problem | Core idea | Exam-level answer |
|---|---|---|---|
| Scaling laws / Chinchilla | How to spend compute | Balance parameters and training tokens | More parameters alone is wasteful if data is too low. |
| RoPE / YaRN | Represent position and extend context | Rotate Q/K pairs by position-dependent angles | Relative position affects dot products. |
| KV cache | Slow autoregressive decoding | Reuse past K/V tensors | Less recomputation, more memory. |
| GQA | KV cache memory | Many Q heads share fewer K/V heads | Reduce cache footprint with modest quality trade-off. |
| Sliding-window attention | O(nยฒ) attention cost | Limit local attention span | Good for local dependencies; needs hybrid/global fixes for long retrieval. |
| FlashAttention | Memory traffic | Tile attention and use online softmax | Same exact attention, faster/more memory efficient. |
| SwiGLU | FFN expressiveness | Gated activation in the FFN | Modern replacement for vanilla ReLU/GELU in many LLMs. |
| MoE | Capacity vs FLOPs | Route each token to a few experts | More parameters loaded, fewer active per token. |
Formal:
Meaning: A router selects experts per token, and an auxiliary term discourages expert collapse.
Exam/application: Explain sparse compute and why routing balance matters.
Variables: g(x)=router logits; p_e=routing probability; ฮป controls balancing weight.
Common mistake: Saying MoE is automatically cheaper in memory. It mostly saves per-token compute, while expert weights still exist.
Task: route three tokens through an MoE feed-forward layer with 8 experts and top-2 routing.
The router scores all experts, but each token only computes through the two selected experts.
| Token | Highest router probabilities | Experts actually computed | Weighted output |
|---|---|---|---|
The | E3: 0.42, E7: 0.31, E1: 0.09... | E3, E7 | 0.42ยทE3(x) + 0.31ยทE7(x) |
model | E1: 0.55, E3: 0.22, E6: 0.07... | E1, E3 | 0.55ยทE1(x) + 0.22ยทE3(x) |
runs | E7: 0.48, E2: 0.28, E4: 0.08... | E7, E2 | 0.48ยทE7(x) + 0.28ยทE2(x) |
active experts per token = 2 / 8 = 25%
Each token avoids running six expert FFNs, so per-token expert compute is sparse.
| Expert | Selected by tokens | Why it matters |
|---|---|---|
E1 | 1 token | healthy usage |
E3 | 2 tokens | popular but still acceptable here |
E7 | 2 tokens | popular but still acceptable here |
E4/E5/E6/E8 | 0 tokens | collapse risk if this persists |
MoE gives sparse compute, not free memory. The model still owns parameters for all 8 experts, and serving must route tokens efficiently.
Exam trap: saying โMoE is just cheaperโ misses the memory/routing/load-balancing trade-off.
For modern techniques, focus on problem โ mechanism โ trade-off. That is more likely examinable than exact paper-specific benchmark numbers.
๐งฉ Connection: LoRA and RAG are not core Transformer block changes; they adapt or ground models around the architecture.
๐งญ This chapter teaches the system-level layer: dense vs sparse models, fine-tuning, LoRA, retrieval augmentation, hallucination, and evaluation.
๐ Why it matters: LLMs are not only architectures; useful systems combine a base model with data, adaptation, retrieval, and evaluation.
Continue training a pretrained model on task-specific data.
Reason: Lecture 8 and practical scripts directly cover model adaptation.
A parameter-efficient method that freezes W and trains a low-rank update BA.
Reason: Lecture 8 gives formula slides and adaptation motivation.
Retrieval-augmented generation conditions a generator on retrieved external documents.
Reason: Introduced in lecture 1 as a concrete mitigation for hallucination.
A fluent model output that is unsupported, false, or not grounded in the requested evidence.
Reason: Lecture 1 highlights it as a core problem of generative models.
Training models toward human preferences, often by supervised fine-tuning plus preference optimization/RL.
Reason: Only lightly visible in the extracted slides, but standard for LLM context.
Full fine-tuning updates all model weights, which is powerful but expensive and storage-heavy. LoRA freezes the base weights and trains low-rank adapter matrices, making task adaptation cheaper. RAG tackles a different problem: instead of changing the weights, retrieve relevant documents and feed them into the prompt/context so the model can condition on external evidence.
Formal:
Meaning: Freeze W and train small low-rank matrices A and B.
Exam/application: Know why trainable parameter count drops from roughly dยฒ to 2dr for a square matrix.
Variables: W = base weight; A/B = low-rank adapters; r = rank.
Common mistake: Thinking LoRA changes the tokenizer or retrieval pipeline. It changes trainable weight updates.
Task: answer the course question "What does masked attention prevent?" using retrieved evidence.
RAG does not change the Transformer weights. It changes the context the model receives before answering.
| Chunk | Retrieved text | Use? | Reason |
|---|---|---|---|
| A | A causal mask blocks attention to future target positions during decoder training. | Use | Directly answers the question. |
| B | Teacher forcing feeds the true previous target token during training. | Maybe | Related to training, but not the mask itself. |
| C | Embeddings convert token IDs into dense vectors. | No | Wrong topic. |
question + Chunk A + optional Chunk B โ generator
The prompt tells the model what evidence it should base the answer on.
| Answer claim | Supported by | Status |
|---|---|---|
| Masked attention prevents reading future target tokens. | Chunk A | Grounded |
| It improves factuality by itself. | No retrieved chunk | Unsupported |
input: user question
embed/query the question
retrieve top-k relevant chunks from trusted course corpus
compose prompt with question + retrieved evidence
generate answer with citations to retrieved chunks
evaluate answer for grounding and missing evidence
Be able to compare full fine-tuning vs LoRA, explain RAG as retrieval plus generation, and define hallucination without mystifying it.
๐งฉ Connection: these system ideas sit on top of the Transformer/model-family foundation; they do not replace the need to understand masks, objectives, and attention.
๐งญ This chapter maps the provided notebooks/scripts to the theory chapters.
| File | Concepts practiced | Study action |
|---|---|---|
| markov-language-model.zip | Markov chain, text generation, visualization, perplexity mention | Reproduce the table-building/generation algorithm. |
| word2vec.zip | Preprocessing, TF-IDF comparison, Word2Vec | Explain sparse vs dense vector behavior. |
| rnn-language-model.zip | RNN text generator from basics | Trace hidden-state update and sampling. |
| bidirectional-LSTM-generator.zip | LSTM, bidirectionality, TensorFlow text generation | Understand gates/bidirectionality; low priority to memorize library calls. |
| 6-practical.ipynb | Matrix multiplication, embeddings, positional encoding, Q/K/V, masks | Work through shapes by hand; this is highly exam-aligned. |
| transformer-based models practical.zip | MLM training, BERT embeddings, sentiment fine-tuning, MoE layer | Know the objective and module purpose for each script. |
Do not memorize library installation commands. Memorize the concepts implemented by the notebooks: how data becomes tensors, how losses are computed, and what each module is supposed to learn.
| Compare | Key distinction | Likely short-answer phrasing |
|---|---|---|
| N-gram vs neural LM | Count table vs learned smooth representation | Neural LMs generalize via embeddings and parameters instead of exact context counts. |
| RNN vs Transformer | Sequential hidden state vs parallel self-attention | Transformers remove recurrence and use attention plus positional information. |
| Encoder-only vs decoder-only | Bidirectional representation vs causal generation | BERT-style MLM differs from GPT-style next-token prediction. |
| Full fine-tuning vs LoRA | Update all weights vs train low-rank adapters | LoRA reduces trainable parameters while preserving the frozen base model. |
| Dense vs MoE | All parameters active vs routed experts | MoE increases capacity without proportional per-token compute, but routing/memory are hard. |
Definition: A mechanism that computes weighted combinations of values based on query-key compatibility.
Plain-language: Decide which earlier states matter right now.
Where it appears: Lecture 5 pp. 18-23; lecture 6 pp. 55-80.
Definition: A document representation that counts token occurrences and ignores order.
Plain-language: A word-count vector.
Where it appears: Lecture 3 pp. 10-12.
Definition: A mask that blocks each position from attending to future tokens.
Plain-language: No peeking at the answer during next-token training.
Where it appears: Lecture 6 pp. 85-89; lecture 8 pp. 40-42.
Definition: The negative log-probability assigned to the correct class/token.
Plain-language: Punish the model when the right answer has low probability.
Where it appears: Lecture 7 pp. 25-31; lecture 8 pp. 27-30.
Definition: A causal Transformer that predicts the next token from past tokens.
Plain-language: Generate left-to-right with a causal mask.
Where it appears: Lecture 8 pp. 34-44.
Definition: An architecture where an encoder maps an input sequence to states and a decoder produces an output sequence.
Plain-language: Read the source, then generate the target.
Where it appears: Lecture 5 pp. 10-17; lecture 8 pp. 3-13.
Definition: A bidirectional Transformer stack used for representations and classification-style tasks.
Plain-language: Read the whole input at once and produce contextual vectors.
Where it appears: Lecture 8 pp. 15-33.
Definition: A position-wise MLP applied independently to each token after attention.
Plain-language: Attention mixes positions; FFN transforms each token representation.
Where it appears: Lecture 6 pp. 90-97; lecture 7 pp. 15-20.
Definition: Continue training a pretrained model on task-specific data.
Plain-language: Start from a general model and specialize it.
Where it appears: Lecture 8 pp. 98-106; transformer practical.
Definition: An exact attention algorithm that reduces memory traffic using tiling and online softmax.
Plain-language: Same attention math, better memory movement.
Where it appears: Lecture 7 pp. 75-76.
Definition: Choose the highest-probability token at each generation step.
Plain-language: Always pick the current best token.
Where it appears: Lecture 6 pp. 106-114.
Definition: Attention with many query heads sharing fewer key/value heads.
Plain-language: Keep many ways to ask, fewer cached things to read.
Where it appears: Lecture 7 pp. 61-69.
Definition: A fluent model output that is unsupported, false, or not grounded in the requested evidence.
Plain-language: Confident-sounding text that is not actually justified.
Where it appears: Lecture 1 p. 8.
Definition: Stored key/value tensors from previous tokens used to avoid recomputing attention history during decoding.
Plain-language: Remember old keys/values so each new token does less repeated work.
Where it appears: Lecture 7 pp. 36-42, 61-69.
Definition: A model that assigns probabilities to token sequences and usually predicts the next token.
Plain-language: It is the probability engine behind text generation.
Where it appears: Lecture 2 pp. 3-43; lecture 4 pp. 4-25; lecture 6 pp. 106-119.
Definition: Residual paths add inputs back; layer norm stabilizes activation scale.
Plain-language: Keep gradients and representations from falling apart in deep stacks.
Where it appears: Lecture 6 pp. 98-103; lecture 7 pp. 14, 20.
Definition: A parameter-efficient method that freezes W and trains a low-rank update BA.
Plain-language: Train small adapter matrices instead of the whole model.
Where it appears: Lecture 8 pp. 101-106.
Definition: A gated recurrent network designed to preserve information over longer spans.
Plain-language: An RNN with gates that decide what to remember, forget, and output.
Where it appears: Lecture 4 pp. 22-24; bidirectional LSTM practical.
Definition: The next state/token is assumed to depend only on a limited current state, not the full history.
Plain-language: The model forgets everything except the last few tokens.
Where it appears: Lecture 2 pp. 4-20; Markov practical archive.
Definition: A pretraining task where selected tokens are hidden and predicted from bidirectional context.
Plain-language: Fill in the blank, but only masked positions count in the loss.
Where it appears: Lecture 8 pp. 21-30; transformer practical.
Definition: A sparse layer that routes tokens to a small subset of expert networks.
Plain-language: More capacity, but only some experts compute for each token.
Where it appears: Lecture 7 pp. 79-89; lecture 8 pp. 55-84; MoE practical.
Definition: Several attention heads run in parallel, then concatenate and project their outputs.
Plain-language: Different heads can learn different relation types.
Where it appears: Lecture 6 pp. 76-84; lecture 7 pp. 8-13.
Definition: A language model that approximates P(w_t | history) using only the previous n-1 tokens.
Plain-language: A next-word table indexed by a short context window.
Where it appears: Lecture 2 pp. 20-43.
Definition: Exponentiated average negative log-likelihood; lower is better for a fixed test set/tokenization.
Plain-language: How surprised the model is, averaged over the sequence.
Where it appears: Lecture 2 p. 39; Markov practical.
Definition: A signal added or applied to token representations so the model can use order.
Plain-language: Attention sees a set unless position is supplied.
Where it appears: Lecture 6 pp. 27-47; lecture 7 pp. 43-60.
Definition: Learned projections that create queries, keys, and values from token representations.
Plain-language: Query asks, key matches, value carries the information to mix.
Where it appears: Lecture 6 pp. 61-65; lecture 7 pp. 8-13.
Definition: Retrieval-augmented generation conditions a generator on retrieved external documents.
Plain-language: Look up relevant text, then answer with that evidence.
Where it appears: Lecture 1 p. 11.
Definition: Training models toward human preferences, often by supervised fine-tuning plus preference optimization/RL.
Plain-language: Make the model more helpful and less wild by using human feedback.
Where it appears: Lecture 8 p. 45.
Definition: A neural network that updates a hidden state while processing a sequence step by step.
Plain-language: A loop over tokens with memory in the hidden state.
Where it appears: Lecture 4 pp. 16-21; lecture 5 pp. 3-9; RNN practical.
Definition: Rotary positional embedding rotates query/key vector pairs by position-dependent angles.
Plain-language: Encode relative position inside the Q/K dot product.
Where it appears: Lecture 7 pp. 43-60.
Definition: Attention(Q,K,V)=softmax(QK^T/sqrt(d_k))V.
Plain-language: Compare queries to keys, normalize weights, then blend values.
Where it appears: Lecture 6 pp. 64-75.
Definition: Empirical relationships between loss, model size, dataset size, and compute.
Plain-language: Bigger helps, but data and compute balance matter.
Where it appears: Lecture 7 pp. 35-37.
Definition: A function that turns logits into a normalized probability distribution.
Plain-language: Scores in, probabilities out.
Where it appears: Lecture 4 pp. 9-11; lecture 6 pp. 65, 106-114; lecture 7 pp. 24-30.
Definition: During training, feed the decoder the true previous token instead of its own previous prediction.
Plain-language: Train with the correct history so errors do not snowball too early.
Where it appears: Lecture 5 p. 16; lecture 8 p. 13.
Definition: A weighting scheme that boosts terms frequent in a document but rare across the corpus.
Plain-language: Common here, rare everywhere else means informative.
Where it appears: Lecture 3; Word2Vec practical.
Definition: Splitting text into model vocabulary units and mapping them to integer IDs.
Plain-language: Turning text into the discrete symbols the model can look up.
Where it appears: Lecture 3 pp. 10-15; lecture 7 pp. 33-34; transformer practical.
Definition: A stackable layer containing attention, residual/add-norm structure, and a position-wise FFN.
Plain-language: The repeating unit that turns token vectors into context-aware vectors.
Where it appears: Lecture 6 pp. 47-121; lecture 7 pp. 2-32.
Definition: A dense vector representation of a token or text item in a continuous space.
Plain-language: A learned coordinate for meaning and usage.
Where it appears: Lecture 3 pp. 6-48; lecture 6 pp. 18-26.
Definition: A family of shallow neural models, CBOW and skip-gram, for learning word vectors from context.
Plain-language: Learn vectors by predicting words from neighbors or neighbors from words.
Where it appears: Lecture 3; Word2Vec practical.
Every relevant lecture PDF page is represented below. Practical files are listed after the page-level table. Low-text animation/title slides are preserved as traceability rows but often marked low priority or slide noise.
| Source file | Slide/page | Detected topic | Final section | Priority |
|---|---|---|---|---|
| 1-presentation.pdf | 1 | Generative AI | Course orientation, Transformer architecture, Modern Transformer techniques | ๐ก Context |
| 1-presentation.pdf | 2 | Contact to the docent | Course orientation / low-priority context | ๐๏ธ Slide noise |
| 1-presentation.pdf | 3 | Generative AI | Course orientation, Transformer architecture, Modern Transformer techniques | ๐๏ธ Slide noise |
| 1-presentation.pdf | 4 | Type of course | Course orientation / low-priority context | ๐๏ธ Slide noise |
| 1-presentation.pdf | 5 | โAny sufficiently ad- | Course orientation / low-priority context | โช Low priority |
| 1-presentation.pdf | 6 | Language modeling, Attention, Transformer | Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 1-presentation.pdf | 7 | Chances: Supporting day-to-day tasks | Course orientation / low-priority context | โช Low priority |
| 1-presentation.pdf | 8 | Problem: Models hallucinating | Course orientation / low-priority context | โช Low priority |
| 1-presentation.pdf | 9 | Semantic similarity in latent space | Course orientation / low-priority context | โช Low priority |
| 1-presentation.pdf | 10 | Democratization of technology | Course orientation / low-priority context | โช Low priority |
| 1-presentation.pdf | 11 | RAG | LLM systems | ๐ Exam-practical |
| 1-presentation.pdf | 12 | Research at our group | Course orientation / low-priority context | โช Low priority |
| 1-presentation.pdf | 13 | Generative AI, Language modeling, Word embeddings, Attention, Transformer, RAG | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 1-presentation.pdf | 14 | Generative AI | Course orientation, Transformer architecture, Modern Transformer techniques | ๐ก Context |
| 2-presentation.pdf | 1 | Generative AI, Language modeling | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 2-presentation.pdf | 2 | Language modeling, Markov assumption, Transformer | Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 2-presentation.pdf | 3 | Language modeling | Language modeling foundations | ๐๏ธ Slide noise |
| 2-presentation.pdf | 4 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 5 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 6 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 7 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 8 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 9 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 10 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 11 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 12 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 13 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 14 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 15 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 16 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 17 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 18 | Language modeling, Markov assumption | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 19 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 20 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 21 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 22 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 23 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 24 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 25 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 26 | โIt appears then that | Source traceability / low-priority context | โช Low priority |
| 2-presentation.pdf | 27 | โIt appears then that | Source traceability / low-priority context | โช Low priority |
| 2-presentation.pdf | 28 | Language modeling, Q/K/V | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 29 | Language modeling, Q/K/V | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 30 | Language modeling, Residual connections | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 31 | Language modeling, Attention | Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 2-presentation.pdf | 32 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 33 | Language modeling, Markov assumption, Q/K/V | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 34 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 35 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 36 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 37 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 38 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 39 | Language modeling, Perplexity | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 40 | Generative AI, Language modeling, Markov assumption, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 2-presentation.pdf | 41 | Generative AI, Language modeling, Markov assumption, Prompting | Course orientation, Language modeling foundations, LLM systems | ๐ด Exam-core |
| 2-presentation.pdf | 42 | Language modeling | Language modeling foundations | ๐ด Exam-core |
| 2-presentation.pdf | 43 | Language modeling, Markov assumption, Word embeddings, Attention | Language modeling foundations, Text representation and embeddings, Seq2Seq and attention | ๐ด Exam-core |
| 3-presentation.pdf | 1 | Generative AI, Word embeddings, Word2Vec | Course orientation, Text representation and embeddings, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 3-presentation.pdf | 2 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 3 | Markov assumption, Word embeddings, Word2Vec | Language modeling foundations, Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 4 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 5 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 6 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 7 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 8 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 9 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 10 | Tokenization, Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 11 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 12 | Tokenization, Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 13 | Tokenization, Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 14 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 15 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 16 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 17 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 18 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 19 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 20 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 21 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 22 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 23 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 24 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 25 | Word embeddings, Word2Vec, Q/K/V | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 26 | Word embeddings, Word2Vec, Q/K/V | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 27 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 28 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 29 | Word embeddings, Word2Vec, Q/K/V | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 30 | Word embeddings, Word2Vec, Q/K/V | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 31 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 32 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 33 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 34 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 35 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 36 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 37 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 38 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 39 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 40 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 41 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 42 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 43 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 44 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 45 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 46 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 47 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 3-presentation.pdf | 48 | Word embeddings, Word2Vec | Text representation and embeddings | ๐ด Exam-core |
| 4-presentation.pdf | 1 | Generative AI, Language modeling, Neural language models | Course orientation, Language modeling foundations, Neural language models, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 4-presentation.pdf | 2 | Language modeling, Markov assumption, N-gram models, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 3 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 4 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 5 | Language modeling, Word embeddings, Neural language models | Language modeling foundations, Text representation and embeddings, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 6 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 7 | Language modeling, Markov assumption, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 8 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 9 | Language modeling, Markov assumption, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 10 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 11 | Language modeling, Markov assumption, Neural language models, Transformer | Language modeling foundations, Neural language models, Transformer architecture | ๐ด Exam-core |
| 4-presentation.pdf | 12 | Language modeling, Markov assumption, Neural language models, Feed-forward neural networks | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 13 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 14 | Language modeling, Markov assumption, Word embeddings, Neural language models | Language modeling foundations, Text representation and embeddings, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 15 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 16 | Language modeling, Neural language models, Feed-forward neural networks, RNN, Q/K/V | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 17 | Language modeling, Neural language models, RNN | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 18 | Language modeling, N-gram models, Neural language models, RNN | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 19 | Language modeling, Neural language models, Feed-forward neural networks, RNN | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 20 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 21 | Language modeling, Neural language models | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 22 | Language modeling, Neural language models, RNN | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 23 | Language modeling, Neural language models, LSTM | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 24 | Language modeling, Neural language models, LSTM | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 4-presentation.pdf | 25 | Language modeling, Markov assumption, Neural language models, RNN, LSTM | Language modeling foundations, Neural language models | ๐ด Exam-core |
| 5-presentation.pdf | 1 | Generative AI, Encoder-decoder, Attention | Course orientation, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 5-presentation.pdf | 2 | Language modeling, Markov assumption, Neural language models, RNN, Encoder-decoder, Attention | Language modeling foundations, Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 3 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 4 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 5 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 6 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 7 | Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 8 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 9 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 10 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 11 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 12 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 13 | Vanishing gradients, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 14 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 15 | RNN, Encoder-decoder, Attention | Neural language models, Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 16 | Encoder-decoder, Attention, Teacher forcing | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 17 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 18 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 19 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 20 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 21 | Encoder-decoder, Attention, Q/K/V | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 22 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 23 | Encoder-decoder, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 5-presentation.pdf | 24 | RNN, Encoder-decoder, Attention, Transformer, Self-attention | Neural language models, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 1 | Generative AI, Transformer | Course orientation, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 6-presentation.pdf | 2 | Exercise: Matrix Multiplication | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 3 | ๏ฃฎ 2 3๏ฃน | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 4 | Solution: Matrix Multiplication | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 5 | Solution: Matrix Multiplication (Continued) | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 6 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 7 | Attention, Self-attention | Neural language models, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 8 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 9 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 10 | Word embeddings, Feed-forward neural networks, Attention, Positional encoding, Residual connections | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 11 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 12 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 13 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 14 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 15 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 16 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 17 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 18 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 19 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 20 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 21 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 22 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 23 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 24 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 25 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 26 | Word embeddings, Word2Vec, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 27 | Modelโs awareness to position. Is it imporant? | Neural language models | โช Low priority |
| 6-presentation.pdf | 28 | Consequences of Removing the Recurrent Nature | Neural language models | โช Low priority |
| 6-presentation.pdf | 29 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 30 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 31 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 32 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 33 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 34 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 35 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 36 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 37 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 38 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 39 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 40 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 41 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 42 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 43 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 44 | Word embeddings, Positional encoding, Residual connections | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 45 | Word embeddings, Positional encoding, Residual connections | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 46 | Word embeddings, Positional encoding, Residual connections | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 47 | Word embeddings, Positional encoding, Residual connections | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 48 | Word embeddings, Transformer, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 49 | Solution | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 50 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 51 | Positional encoding | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 52 | Word embeddings, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 53 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 54 | Word embeddings | Text representation and embeddings | ๐ด Exam-core |
| 6-presentation.pdf | 55 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 56 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 57 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 58 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 59 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 60 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 61 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 62 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 63 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 64 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 65 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 66 | Word embeddings, Attention, Self-attention, Q/K/V | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 67 | Word embeddings, Attention, Self-attention | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 68 | Word embeddings, Attention, Self-attention | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 69 | Word embeddings, Attention, Self-attention | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 70 | Word embeddings, Attention, Self-attention | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 71 | Word embeddings, Attention, Self-attention | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 72 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 73 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 74 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 75 | Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 76 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 77 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 78 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 79 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 80 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 81 | Generative AI | Course orientation, Transformer architecture | ๐ก Context |
| 6-presentation.pdf | 82 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 83 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 84 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 85 | MHA: Masked vs Non-masked | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 86 | MHA: Masked vs Non-masked | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 87 | Attention, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 88 | Attention, Q/K/V, Multi-head attention, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 6-presentation.pdf | 89 | Attention, Q/K/V, Multi-head attention, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 6-presentation.pdf | 90 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 91 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 92 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 93 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 94 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 95 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 96 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 97 | Feed-forward neural networks, Attention | Seq2Seq and attention | ๐ด Exam-core |
| 6-presentation.pdf | 98 | Attention, Q/K/V, Layer normalization, Residual connections | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 99 | Attention, Q/K/V, Layer normalization, Residual connections | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 100 | Transformer, Positional encoding, Residual connections | Transformer architecture, LLM systems | ๐ด Exam-core |
| 6-presentation.pdf | 101 | Transformer, Positional encoding, Residual connections | Transformer architecture, LLM systems | ๐ด Exam-core |
| 6-presentation.pdf | 102 | Transformer, Positional encoding, Residual connections | Transformer architecture, LLM systems | ๐ด Exam-core |
| 6-presentation.pdf | 103 | Transformer, Positional encoding, Residual connections | Transformer architecture, LLM systems | ๐ด Exam-core |
| 6-presentation.pdf | 104 | Revision on Dimensions | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 105 | Revision on Dimensions | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 106 | Transformer | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 107 | Transformer | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 108 | Transformer | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 109 | Transformer | Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 110 | Word embeddings, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 111 | Word embeddings, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 6-presentation.pdf | 112 | Concrete Example (2): Logits Z = OW T | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 113 | Greedy decoding: arg max gives the same result whether applied to zlast or softmax(zlast). | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 114 | Concrete Example (3): Softmax and Greedy Decode | Source traceability / low-priority context | โช Low priority |
| 6-presentation.pdf | 115 | Q/K/V | Source traceability / low-priority context | ๐ด Exam-core |
| 6-presentation.pdf | 116 | Q/K/V | Source traceability / low-priority context | ๐ด Exam-core |
| 6-presentation.pdf | 117 | Q/K/V | Source traceability / low-priority context | ๐ด Exam-core |
| 6-presentation.pdf | 118 | Q/K/V | Source traceability / low-priority context | ๐ด Exam-core |
| 6-presentation.pdf | 119 | Q/K/V | Source traceability / low-priority context | ๐ด Exam-core |
| 6-presentation.pdf | 120 | Generative AI, Language modeling, Word embeddings, Attention, Transformer, Self-attention, Q/K/V, Multi-head attention, Positional encoding, Residual connection | Course orientation, Language modeling foundations, Text representation and embeddings, Neural language models, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 6-presentation.pdf | 121 | Generative AI, Language modeling, Word embeddings, Attention, Transformer, Self-attention, Q/K/V, Multi-head attention, Positional encoding, Residual connection | Course orientation, Language modeling foundations, Text representation and embeddings, Neural language models, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 6-presentation.pdf | 122 | Fin | Source traceability / low-priority context | ๐๏ธ Slide noise |
| 7-presentation.pdf | 1 | Generative AI, Transformer | Course orientation, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 2 | Word embeddings, Feed-forward neural networks, Attention, Transformer, Multi-head attention, Positional encoding, Residual connections | Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 3 | Attention, Transformer, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 4 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 5 | Word embeddings, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 6 | Word embeddings, Transformer, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 7 | Word embeddings, Transformer, Positional encoding | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 8 | Attention, Transformer, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 9 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 10 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 11 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 12 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 13 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 14 | Transformer, Layer normalization, Residual connections | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 15 | Feed-forward neural networks, Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 16 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 17 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 18 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 19 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 20 | Transformer, Layer normalization, Residual connections | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 21 | Word embeddings, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 22 | Word embeddings, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 23 | Word embeddings, Transformer | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 24 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 25 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 26 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 27 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 28 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 29 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 30 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 31 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 32 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 33 | Tokenization, Attention, Transformer, Mixture of Experts | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 34 | Tokenization, Attention, Transformer, Mixture of Experts | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 35 | Attention, Transformer, GPT, Scaling laws | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 36 | Attention, Transformer, GPT, Scaling laws | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 37 | Attention, Transformer, GPT, Scaling laws | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 38 | Transformer, Fine-tuning, Prompting | Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 7-presentation.pdf | 39 | Transformer, Fine-tuning, Prompting | Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 7-presentation.pdf | 40 | Transformer, Fine-tuning, Prompting | Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 7-presentation.pdf | 41 | Transformer, Fine-tuning, Prompting | Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 7-presentation.pdf | 42 | Transformer, Fine-tuning, Prompting | Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 7-presentation.pdf | 43 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 44 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 45 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 46 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 47 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 48 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 49 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 50 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 51 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 52 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 53 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 54 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 55 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 56 | Transformer | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 57 | Word embeddings, Transformer, Q/K/V | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 58 | Word embeddings, Transformer, Q/K/V | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 59 | Word embeddings, Transformer, Q/K/V | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 60 | Word embeddings, Transformer, Q/K/V | Text representation and embeddings, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 61 | Attention, Transformer, Q/K/V, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 62 | Attention, Transformer, Q/K/V, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 63 | Attention, Transformer, Q/K/V, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 64 | Attention, Transformer, Q/K/V, Multi-head attention | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 65 | Attention, Transformer, Q/K/V | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 66 | Attention, Transformer, Q/K/V | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 67 | Attention, Transformer, Q/K/V | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 68 | Attention, Transformer, Q/K/V | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 69 | Attention, Transformer, Q/K/V | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 70 | Attention, Transformer, Q/K/V, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 71 | Attention, Transformer, Q/K/V, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 72 | Attention, Transformer, Q/K/V, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 73 | Attention, Transformer, Q/K/V, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 74 | Attention, Transformer, Q/K/V, Causal language modeling | Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 75 | Attention, Transformer | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 76 | Transformer, Q/K/V | Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 77 | Transformer, BERT, GPT | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 78 | Feed-forward neural networks, Transformer, Mixture of Experts | Transformer architecture | ๐ด Exam-core |
| 7-presentation.pdf | 79 | Transformer, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 80 | Transformer, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 81 | Transformer, Q/K/V, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 82 | Transformer, Q/K/V, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 83 | Transformer, Q/K/V, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 84 | Transformer, Q/K/V, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 85 | Transformer, Q/K/V, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 86 | Transformer, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 87 | Transformer, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 88 | Transformer, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 89 | Transformer, Mixture of Experts | Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 7-presentation.pdf | 90 | Transformer | Transformer architecture | ๐๏ธ Slide noise |
| 8-presentation.pdf | 1 | Generative AI, Language modeling, Transformer | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 2 | Language modeling, Word embeddings, Feed-forward neural networks, Attention, Transformer, Positional encoding, Residual connections | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 3 | Language modeling, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 4 | Language modeling, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 5 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 6 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 7 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 8 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 9 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 10 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 11 | Language modeling, Encoder-decoder, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 12 | Language modeling, Encoder-decoder, Teacher forcing, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 13 | Language modeling, Encoder-decoder, Teacher forcing, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 14 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 15 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 16 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 17 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 18 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 19 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 20 | Language modeling, Word embeddings, Attention, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 21 | Language modeling, Word embeddings, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 22 | Language modeling, Word embeddings, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 23 | Language modeling, Word embeddings, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 24 | Language modeling, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 25 | Language modeling, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 26 | Language modeling, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 27 | Language modeling, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 28 | Language modeling, Word embeddings, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐๏ธ Slide noise |
| 8-presentation.pdf | 29 | Language modeling, Word embeddings, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 30 | Language modeling, Word embeddings, Transformer, Masked language modeling | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 31 | Language modeling, Word embeddings, Transformer, Layer normalization, Masked language modeling, BERT, Fine-tuning | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 32 | Language modeling, Word embeddings, Transformer, Layer normalization, Masked language modeling, BERT, Fine-tuning | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 33 | Language modeling, Word embeddings, Transformer, Layer normalization, Masked language modeling, BERT, Fine-tuning | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 34 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 35 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 36 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 37 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 38 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 39 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 40 | Language modeling, Transformer, Causal language modeling | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 41 | Language modeling, Perplexity, Attention, Transformer, Self-attention, Causal language modeling, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 42 | Language modeling, Transformer, Q/K/V | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 43 | Language modeling, Transformer, Q/K/V | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 44 | Language modeling, Transformer, Q/K/V | Course orientation, Language modeling foundations, Transformer architecture | ๐๏ธ Slide noise |
| 8-presentation.pdf | 45 | Generative AI, Language modeling, Word embeddings, Transformer, Q/K/V, GPT, Mixture of Experts, RLHF/alignment | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 8-presentation.pdf | 46 | Language modeling, Attention, Transformer, Q/K/V, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 47 | Language modeling, Attention, Transformer, Q/K/V, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 48 | Language modeling, Attention, Transformer, Q/K/V, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 49 | Language modeling, Attention, Transformer, Q/K/V, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 50 | Language modeling, Attention, Transformer, Q/K/V, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 51 | Language modeling, Attention, Transformer, Q/K/V, GPT | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 52 | Language modeling, Tokenization, Word embeddings, Attention, Transformer, Layer normalization | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 53 | Language modeling, Attention, Transformer, Q/K/V | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture, LLM systems | ๐ด Exam-core |
| 8-presentation.pdf | 54 | Language modeling, Word embeddings, Attention, Transformer, Multi-head attention, GPT | Course orientation, Language modeling foundations, Text representation and embeddings, Seq2Seq and attention, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 55 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 56 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 57 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 58 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 59 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 60 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 61 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 62 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 63 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 64 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 65 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 66 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 67 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 68 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 69 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 70 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 71 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 72 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 73 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 74 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 75 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 76 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 77 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 78 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 79 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 80 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 81 | Language modeling, Transformer, Fine-tuning, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 82 | Language modeling, Transformer, Fine-tuning, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 83 | Language modeling, Transformer, Fine-tuning, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 84 | Language modeling, Transformer, Mixture of Experts | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 85 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 86 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 87 | Language modeling, Transformer | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 88 | Language modeling, Transformer | Course orientation, Language modeling foundations, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 89 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 90 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 91 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 92 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 93 | Language modeling, Transformer, GPT | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 94 | Language modeling, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 95 | Language modeling, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 96 | Language modeling, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 97 | Language modeling, Transformer | Course orientation, Language modeling foundations, Seq2Seq and attention, Transformer architecture | ๐ด Exam-core |
| 8-presentation.pdf | 98 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques, LLM systems | ๐๏ธ Slide noise |
| 8-presentation.pdf | 99 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques, LLM systems | ๐๏ธ Slide noise |
| 8-presentation.pdf | 100 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques, LLM systems | ๐๏ธ Slide noise |
| 8-presentation.pdf | 101 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques, LLM systems | ๐ด Exam-core |
| 8-presentation.pdf | 102 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques, LLM systems | ๐๏ธ Slide noise |
| 8-presentation.pdf | 103 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 104 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 105 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 106 | Language modeling, Transformer, Fine-tuning | Course orientation, Language modeling foundations, Transformer architecture, Modern Transformer techniques | ๐ด Exam-core |
| 8-presentation.pdf | 107 | Language modeling, Transformer | Course orientation, Language modeling foundations, Transformer architecture | ๐๏ธ Slide noise |
| Source file | Type | Detected topic | Final section | Priority |
|---|---|---|---|---|
| 6-practical.ipynb | Notebook | Transformer component exercises | Transformer architecture | ๐ด Exam-core |
| markov-language-model.zip | Archive | Markov generator practical | Language modeling foundations | ๐ Exam-practical |
| word2vec.zip | Archive | Word2Vec vs TF-IDF practical | Text representation and embeddings | ๐ Exam-practical |
| rnn-language-model.zip | Archive | Handwritten RNN generator | Neural language models | ๐ Exam-practical |
| bidirectional-LSTM-generator.zip | Archive | Bidirectional LSTM generator | Neural language models | ๐ Exam-practical |
| transformer-based models practical.zip | Archive | MLM, BERT embeddings, sentiment fine-tuning, MoE | Model families / modern techniques | ๐ด Exam-core |
| README.txt | Text | Course formal remarks and prerequisites | Course orientation | ๐ก Context |
The following pages had low text extraction and were checked through local rendering or inferred from neighboring pages:
These public sources were used only to verify or clarify concepts. The professor slides and local practical files determine course scope.