Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ostad-ai/backpropagation

Here, Backpropagaation algorithm is implemented with pure Python, only with Python standard library.
https://github.com/ostad-ai/backpropagation

backpropagation classification gradient-descent iris neural-networks opensource pure python

Last synced: about 1 month ago
JSON representation

Here, Backpropagaation algorithm is implemented with pure Python, only with Python standard library.

Awesome Lists containing this project

README

        

# Backpropagation, pure Python, version 0.0
1. Backpropagation with pure Python.
- Here, we use no external library to implement a Backpropagation algorithm for a three-layer MLP (Multilayer Perceptron).
2. To use the available code for backpropagation, at the top of your code, write: from bp_pure import *
3. Remember to download **bp_pure.py**.
4. This implementation uses biases for both input and hidden layers.
5. For now, only an online training for backpropagation has been implemented.
6. As an example, download and use **bp_pure_example.ipynb** and **iris.csv** to test the backpropagation algorithm.