<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>Deep Learning · PoliStudy</title><description>From a single perceptron to convolutional backbones, recurrent nets and word embeddings — the full Politecnico di Milano Deep Learning course, rebuilt as an interactive, exam-focused study guide on learned, hierarchical features.</description><link>https://www.polistudy.me/</link><language>en</language><item><title>ML vs Deep Learning</title><link>https://www.polistudy.me/deep-learning/ml-vs-deep-learning/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/ml-vs-deep-learning/</guid><description>By the end you can place any problem in the right learning paradigm, state precisely what &quot;generalization&quot; means, explain what deep learning actually changed — learned features instead of hand-crafted ones — and say honestly why it took off when it did.</description><category>machine learning</category><category>supervised / unsupervised / reinforcement learning</category><category>generalization</category><category>empirical risk minimization</category><category>bias–variance trade-off</category><category>representation learning</category><category>hierarchical features</category><category>universal approximation</category></item><item><title>From Perceptrons to Neural Networks</title><link>https://www.polistudy.me/deep-learning/perceptrons-to-neural-networks/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/perceptrons-to-neural-networks/</guid><description>By the end you can explain why a single perceptron can&apos;t learn XOR, trace backprop through a small net, and derive — not memorise — why regression uses MSE and classification uses cross-entropy.</description><category>perceptron</category><category>linear separability</category><category>multi-layer perceptron</category><category>universal approximation</category><category>backpropagation</category><category>activation functions</category><category>cross-entropy</category><category>maximum likelihood estimation</category><category>gradient descent</category></item><item><title>Neural Networks Training &amp; Overfitting</title><link>https://www.polistudy.me/deep-learning/training-and-overfitting/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/training-and-overfitting/</guid><description>By the end you can diagnose under- vs over-fitting, choose a validation scheme, and sort every training trick into the two buckets the exam keeps asking about: does it improve GENERALIZATION, or training PERFORMANCE?</description><category>generalization</category><category>overfitting</category><category>bias–variance trade-off</category><category>cross-validation</category><category>early stopping</category><category>regularization</category><category>dropout</category><category>batch normalization</category><category>weight initialization</category><category>optimizers</category><category>learning rate</category></item><item><title>Recurrent Neural Networks</title><link>https://www.polistudy.me/deep-learning/recurrent-neural-networks/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/recurrent-neural-networks/</guid><description>By the end you can explain why a vanilla RNN forgets, walk an LSTM cell gate-by-gate, and reason about which sequence architecture (stacked, bidirectional, seq2seq) fits a task — the exact judgements the exams test.</description><category>recurrent neural network</category><category>sequential data</category><category>backpropagation through time</category><category>vanishing gradient</category><category>LSTM</category><category>GRU</category><category>bidirectional RNN</category><category>seq2seq</category><category>teacher forcing</category><category>beam search</category><category>attention</category></item><item><title>Word Embeddings</title><link>https://www.polistudy.me/deep-learning/word-embeddings/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/word-embeddings/</guid><description>By the end you can explain how an autoencoder learns a representation with no labels, why one-hot words are useless for meaning, what task word2vec actually trains on (self-supervised but NOT an autoencoder), and where its analogy arithmetic comes from.</description><category>autoencoder</category><category>PCA</category><category>representation learning</category><category>one-hot encoding</category><category>word embeddings</category><category>word2vec</category><category>CBOW</category><category>skip-gram</category><category>negative sampling</category><category>GloVe</category><category>analogy arithmetic</category></item><item><title>Image Classification</title><link>https://www.polistudy.me/deep-learning/image-classification/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/image-classification/</guid><description>By the end you can explain why a linear classifier on raw pixels is literally template matching by correlation, why that&apos;s too weak, and why pixel distance fails — the motivation that makes CNNs necessary.</description><category>computer vision</category><category>digital image tensor</category><category>correlation</category><category>template matching</category><category>translation invariance</category><category>linear classifier</category><category>hinge loss</category><category>cross-entropy</category><category>nearest neighbor</category></item><item><title>Convolutional Neural Networks</title><link>https://www.polistudy.me/deep-learning/convolutional-neural-networks/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/convolutional-neural-networks/</guid><description>By the end you can read any CNN&apos;s model.summary() — predict every layer&apos;s output shape and parameter count — and explain why convolution, not a dense layer, is the right tool for images.</description><category>convolution</category><category>weight sharing</category><category>sparse connectivity</category><category>feature map</category><category>CNN arithmetic</category><category>padding</category><category>stride</category><category>pooling</category><category>receptive field</category><category>LeNet</category><category>latent embedding</category></item><item><title>CNNs — Transfer Learning &amp; Data Scarcity</title><link>https://www.polistudy.me/deep-learning/transfer-learning/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/transfer-learning/</guid><description>By the end you can decide — given how much data you have and how similar it is to ImageNet — whether to freeze, fine-tune, or train from scratch, and at what learning rate, plus how augmentation and receptive fields fit in.</description><category>receptive field</category><category>data augmentation</category><category>mixup</category><category>transfer learning</category><category>fine-tuning</category><category>feature extraction</category><category>catastrophic forgetting</category><category>confusion matrix</category><category>precision and recall</category><category>ROC</category><category>AUC</category><category>equivariance vs invariance</category></item><item><title>Famous CNN Architectures</title><link>https://www.polistudy.me/deep-learning/famous-cnn-architectures/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/famous-cnn-architectures/</guid><description>By the end you can read each landmark architecture as a DESIGN LESSON — depth (VGG), parameter collapse (GAP), and efficiency (MobileNet) — rather than memorising specs.</description><category>AlexNet</category><category>VGG</category><category>Network in Network</category><category>global average pooling</category><category>MobileNet</category><category>depthwise separable convolution</category><category>ResNet</category><category>Inception</category><category>DenseNet</category><category>EfficientNet</category><category>CNN visualization</category></item><item><title>WSL, Explanations &amp; Advanced Architectures</title><link>https://www.polistudy.me/deep-learning/wsl-explanations/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/wsl-explanations/</guid><description>By the end you can read BatchNorm&apos;s parameters off a model.summary, explain how a classifier localises objects it was never taught to localise (CAM), and reason about why residual skips ADD while U-Net skips concatenate.</description><category>batch normalization</category><category>data preprocessing</category><category>PCA whitening</category><category>multi-label classification</category><category>sigmoid vs softmax</category><category>class activation mapping</category><category>Grad-CAM</category><category>saliency map</category><category>weakly supervised localization</category><category>ResNet</category><category>residual learning</category><category>skip connections</category><category>Inception</category><category>1x1 convolution</category></item><item><title>Semantic Segmentation</title><link>https://www.polistudy.me/deep-learning/semantic-segmentation/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/semantic-segmentation/</guid><description>By the end you can explain how a classifier becomes a dense predictor (FC → 1×1 conv), how transpose convolution learns to upsample, and exactly why U-Net concatenates its skips — the facts the segmentation questions hinge on.</description><category>semantic segmentation</category><category>instance segmentation</category><category>dense prediction</category><category>fully convolutional network</category><category>1x1 convolution</category><category>transpose convolution</category><category>upsampling</category><category>dilated convolution</category><category>U-Net</category><category>skip connections</category><category>per-pixel loss</category><category>weakly supervised learning</category></item><item><title>Localization and Object Detection</title><link>https://www.polistudy.me/deep-learning/localization-object-detection/</link><guid isPermaLink="true">https://www.polistudy.me/deep-learning/localization-object-detection/</guid><description>By the end you can read an output head and name the task (regression vs detection), compute IoU, and trace the R-CNN family&apos;s evolution — why each version moved more of the pipeline into the network.</description><category>localization</category><category>bounding box regression</category><category>multi-task learning</category><category>pose estimation</category><category>object detection</category><category>IoU</category><category>non-maximum suppression</category><category>R-CNN</category><category>Fast R-CNN</category><category>Faster R-CNN</category><category>region proposal network</category><category>anchors</category><category>YOLO</category><category>SSD</category><category>Mask R-CNN</category><category>feature pyramid network</category></item></channel></rss>