Andrej Karpathy Building makemore Part 3: Activations & Gradients, BatchNorm

🎯 Загружено автоматически через бота: 🚫 Оригинал видео: 📺 Данное видео принадлежит каналу «Andrej Karpathy» (@AndrejKarpathy). Оно представлено в нашем сообществе исключительно в информационных, научных, образовательных или культурных целях. Наше сообщество не утверждает никаких прав на данное видео. Пожалуйста, поддержите автора, посетив его оригинальный канал. ✉️ Если у вас есть претензии к авторским правам на данное видео, пожалуйста, свяжитесь с нами по почте support@, и мы немедленно удалим его. 📃 Оригинальное описание: We dive into some of the internals of MLPs with multiple layers and scrutinize the statistics of the forward pass activations, backward pass gradients, and some of the pitfalls when they are improperly scaled. We also look at the typical diagnostic tools and visualizations you’d want to use to understand the health of your deep network. We learn why training deep neural nets can be fragile and introduce the first modern innovation that made doing so much easier: Batch Normalization. Residual connections and the Adam optimizer remain notable todos for later video. Links: makemore on github: jupyter notebook I built in this video: collab notebook: my website: my twitter: Discord channel: Useful links: “Kaiming init“ paper: BatchNorm paper: Bengio et al. 2003 MLP language model paper (pdf): Good paper illustrating some of the problems with batchnorm in practice: Exercises: E01: I did not get around to seeing what happens when you initialize all weights and biases to zero. Try this and train the neural net. You might think either that 1) the network trains just fine or 2) the network doesn’t train at all, but actually it is 3) the network trains but only partially, and achieves a pretty bad final performance. Inspect the gradients and activations to figure out what is happening and why the network is only partially training, and what part is being trained exactly. E02: BatchNorm, unlike other normalization layers like LayerNorm/GroupNorm etc. has the big advantage that after training, the batchnorm gamma/beta can be “folded into“ the weights of the preceeding Linear layers, effectively erasing the need to forward it at test time. Set up a small 3-layer MLP with batchnorms, train the network, then “fold“ the batchnorm gamma/beta into the preceeding Linear layer’s W,b by creating a new W2, b2 and erasing the batch norm. Verify that this gives the same forward pass during inference. i.e. we see that the batchnorm is there just for stabilizing the training, and can be thrown out after training is done! pretty cool. Chapters: intro starter code fixing the initial loss fixing the saturated tanh calculating the init scale: “Kaiming init” batch normalization batch normalization: summary real example: resnet50 walkthrough summary of the lecture just kidding: part2: PyTorch-ifying the code viz #1: forward pass activations statistics viz #2: backward pass gradient statistics the fully linear case of no non-linearities viz #3: parameter activation and gradient statistics viz #4: update:data ratio over time bringing back batchnorm, looking at the visualizations summary of the lecture for real this time