https://github.com/michaelradu/neuralnetworkfromscratch
🎨 A minimal implementation of a feedforward Neural Network (Multi-layer perceptron)....and also my first ever neural network.
https://github.com/michaelradu/neuralnetworkfromscratch
from-scratch learn learn-to-code learning learning-by-doing machine-learning machine-learning-algorithms machinelearning matplotlib neural-network neural-networks neuralnetwork neuralnetworks perceptron perceptron-learning-algorithm perceptron-neural-networks python python3 reinforcement-learning reinforcement-learning-algorithms
Last synced: 7 months ago
JSON representation
🎨 A minimal implementation of a feedforward Neural Network (Multi-layer perceptron)....and also my first ever neural network.
- Host: GitHub
- URL: https://github.com/michaelradu/neuralnetworkfromscratch
- Owner: michaelradu
- License: gpl-3.0
- Created: 2023-02-03T20:32:09.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-03T20:35:52.000Z (over 2 years ago)
- Last Synced: 2025-01-29T14:15:46.583Z (8 months ago)
- Topics: from-scratch, learn, learn-to-code, learning, learning-by-doing, machine-learning, machine-learning-algorithms, machinelearning, matplotlib, neural-network, neural-networks, neuralnetwork, neuralnetworks, perceptron, perceptron-learning-algorithm, perceptron-neural-networks, python, python3, reinforcement-learning, reinforcement-learning-algorithms
- Language: Python
- Homepage:
- Size: 10.7 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Neural Network From Scratch
This is a minimal implementation of a feedforward Neural Network (Multi-layer perceptron)....and also my first ever neural network.
### Requirements
* Install Python3 & Python Poetry
* On GNU/Linux have python3-tk installed### Usage
```Python
python nn.py
```### What does it do?
This model does the classical tasks of identifying digits (0-9) from a 28x28 image and displays the result along with the image using matplotlib.