A simple neural network in Python
- Free software: MIT
- Documentation: https://n8henrie.com/simplenet
- Simple interface
- Minimal dependencies (numpy)
- Runs on Pythonista on iOS
- Attempts to verify accuracy by comparing results with popular frameworks Keras and Tensorflow
This is a simple multilayer perceptron that I decided to build as I learned a little bit about machine learning and neural networks. It doesn't have many features.
- Python >= 3.8
- numpy
pip3 install simplenet
- See
examples/
- Clone the repo:
git clone https://github.com/n8henrie/simplenet && cd simplenet
- Make a virtualenv:
python3 -m venv .venv
source venv/bin/activate
pip install -e .[dev]
- Andrew Ng's Coursera courses
I don't really know any Latex, so if anybody wants to help me fill out some of the other docstrings with pretty equations, feel free. I'm also not a mathematician, so if anything doesn't seem quite right, feel free to speak up.
- How can I install an older / specific version of SimpleNet?
- Install from a tag:
- pip install git+git://github.com/n8henrie/simplenet.git@v0.1.0
- Install from a specific commit:
- pip install git+git://github.com/n8henrie/simplenet.git@aabc123def456ghi789
- Install from a tag: