Skip to content

olivcho/Neural-Network-from-Scratch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

Neural Network Implementation from Scratch

Features:

  • 2-2-1 architecture (2 inputs, 2 hidden neurons, 1 output)
  • Sigmoid activation function
  • MSE loss
  • Manual backprop

Usage

nn = NeuralNetwork()
nn.train(data, labels)
prediction = nn.feedforward(np.array([x,y])

Backpropagation Calculations

About

Create NN from scratch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages