Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 693 Bytes

File metadata and controls

23 lines (12 loc) · 693 Bytes

Neural Networks From Scratch

🌟 Implementation of Neural Networks from Scratch Using Python & Numpy 🌟

Uses Python 3.7.4

Loss Functions

A loss function, or cost function, tells us “how good” the model is at making predictions for a given set of parameters. The slope of this curve tells us how to change our parameters to make the model more accurate. We use the cost function to update our parameters.

y: actual value | y' / y^p: predicted value | n: number of samples

  • Mean Absolute Error (MAE)

  • Mean Squared Error (MSE)

  • CrossEntropy