Summary
Keywords
Full Transcript
In this video we will implement a simple neural network with single neuron from scratch in python. This is also an implementation of a logistic regression in python from scratch. You know that logistic regression can be thought of as a simple neural network. The pre requisite for this tutorial is the previous tutorial on gradient descent (link below). We will be using gradient descent python funciton written in previous video to implement our own custom neural network class. Watch previous video on gradient descent: https://youtu.be/pXGBHV3y8rs Code of this tutorial: https://github.com/codebasics/deep-learning-keras-tf-tutorial/blob/master/7_nn_from_scratch/7_neural_network_from_scratch.ipynb Do you want to learn technology from me? Check https://codebasics.io/ for my affordable video courses. 🔖 Hashtags 🔖 #NeuralNetworkPython #NeuralNetworkdeeplearning #NeuralNetwork #implementneuralnetwork #gradientdescentpython Next video: https://www.youtube.com/watch?v=IU5fuoYBTAM&list=PLeo1K3hjS3uu7CxAacxVndI4bE_o3BDtO&index=14 Previous video: https://www.youtube.com/watch?v=pXGBHV3y8rs&list=PLeo1K3hjS3uu7CxAacxVndI4bE_o3BDtO&index=12 Deep learning playlist: https://www.youtube.com/playlist?list=PLeo1K3hjS3uu7CxAacxVndI4bE_o3BDtO Machine learning playlist : https://www.youtube.com/playlist?list=PLeo1K3hjS3uvCeTYTeyfe0-rN5r8zn9rw Prerequisites for this series: 1: Python tutorials (first 16 videos): https://www.youtube.com/playlist?list=PLeo1K3hjS3uv5U-Lmlnucd7gqF-3ehIh0 2: Pandas tutorials(first 8 videos): https://www.youtube.com/playlist?list=PLeo1K3hjS3uuASpe-1LjfG5f14Bnozjwy 3: Machine learning playlist (first 16 videos): https://www.youtube.com/playlist?list=PLeo1K3hjS3uvCeTYTeyfe0-rN5r8zn9rw Website: https://codebasics.io/ Facebook: https://www.facebook.com/codebasicshub Twitter: https://twitter.com/codebasicshub
