Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 657 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 657 Bytes

Case Study: Machine Learning by Gradient Descent

Introduction

This case study looks at gradient descent, and the application of gradient descent to machine learning. We look at gradient descent from a programming, rather than mathematical, perspective. We'll start with a simple example that describes the problem we're trying to solve and how gradient descent can be used to solve it. We'll then look at three methods to compute gradients, the core of the problem:

  • numerical differentiation;
  • symbolic differentiation; and
  • automatic differentiation.

See the site for everything.