REPOSITORY OVERVIEWLive repository statistics
★ 114Stars
⑂ 45Forks
◯ 1Open issues
◉ 114Watchers
72/100
OPENREPOHUB HEALTH SIGNALHealthy signals
A transparent discovery signal based on current public GitHub metadata.
Recent activity35% weight
90 Community adoption25% weight
41 Maintenance state20% weight
100 License clarity10% weight
0 Project information10% weight
100 This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
README preview
Mathematics of Neural Network
This code is part of my post on medium.
It shows how to create a neural network from scratch in Python, going all the way from the mathamatics to the code.
Run it
python example_xor.py
python example_conv.py
python example_mnist.py
ALGORITHMICALLY RELATEDSimilar Open-Source Projects
Selected from shared topics, language and repository description—not editorial ratings.
This is the code for a fully connected neural network. The code is written from scratch using Numpy, without using any ready-made deep learning library. In this, classification is done on the MNIST dataset. It is generalized to include various options for activation functions, loss functions, types of regularization, and output activation types.
31/100 healthActive repository
Jupyter NotebookNo license#ann#backpropagation#deep-learning#fully-connected-deep-neural-network
⑂ 0 forks◯ 0 issuesUpdated Jun 14, 2024
This code implements a neural network from scratch in Python to solve the XOR problem. The network consists of one hidden layer with a configurable number of neurons and uses the sigmoid activation function. The backpropagation algorithm is employed for training, and the mean squared error (MSE) is used as the loss function.
27/100 healthActive repository
Jupyter NotebookNo license
⑂ 0 forks◯ 0 issuesUpdated Sep 15, 2024