The general method for neural nets

Posted on June 2, 2019
Tags: machinelearning

1 Summary

  1. Download the dataset
  2. Format the dataset into correct shape
  1. Build the neuron (linear transformation + non-linear activation functions)
  2. Build the loss function
  3. Build the gradient descent method (stochastic gradient descent)
  4. Put it all together