• Stars
    star
    259
  • Rank 152,807 (Top 4 %)
  • Language
    Jupyter Notebook
  • License
    MIT License
  • Created almost 7 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Six snippets of code that made deep learning what it is today.

Deep Learning From Scratch

There are six snippets of code that made deep learning what it is today. Coding the History of Deep Learning covers the inventors and the background to their breakthroughs. In this repo, you can find all the code samples from the story.

  • The Method of Least Squares: The first cost function
  • Gradient Descent: Finding the minimum of the cost function
  • Linear Regression: Automatically decrease the cost function
  • The Perceptron: Using a linear regression type equations to mimic a neuron
  • Artificial Neural Networks: Leveraging backpropagation to solve non-linear problems
  • Deep Neural Networks: Neural networks with more than one hidden layer