Summary
Keywords
Full Transcript
Código: https://github.com/JACantoral/DL_fundamentals/blob/main/fundamentals_DL_CNN_cifar10_part1.ipynb Videos previos de teoría Redes Neuronales Convolucionales: Parte 1: https://youtu.be/cUa3Jug3TiA Parte 2: https://youtu.be/xkZD5eB5KVM Parte 3: https://youtu.be/XkqgTaWle0I Parte 4: https://youtu.be/w9ECvUxMAJQ Finalmente llegamos a la implementación en código de nuestra Red Neuronal Convolucional. En este video implementaremos la red usando el módulo Sequential, para después implementarla usando un esquema orientado a objetos que nos dará mayor flexibilidad, esto lo programaremos en el siguiente video! Acerca de la serie Fundamentos de Deep Learning con Python y PyTorch: En esta serie de videos explico qué son las Redes Neuronales (Neural Networks) y qué es Aprendizaje Computacional (Machine Learning) así como Deep Learning. Empezamos con los principios matemáticos fundamentales hasta su implementación en código. Para esto, primero utilizaremos Python y Numpy para entender los principios de programación de Redes Neuronales incluyendo el algoritmo de retropropagación (backpropagation). Con estas bases, presentaremos el framework PyTorch y construiremos modelos más complejos como son Redes Neuronales Convolucionales (Convolutional Neural Networks - CNNs). About the video series: In this video series I will explain what Neural Networks are, and how Deep Neural Networks work, from the mathematical principles to their implementation in code. Firstly, we will use pure Python and Numpy to understand the fundamentals including backpropagation for a simple Fully Connected Network, and from there we will build on to Convolutional Neural Networks (CNN) using PyTorch. I will be uploading at least one new video every week until we reach different architectures of CNNs. Then, depending on the response and interest in the series I may cover newer models using Generative Adversarial Networks (GANs), and Recurrent Neural Networks.
