Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davidmascharka/mynn
Pure Python/NumPy neural network library extending MyGrad
https://github.com/davidmascharka/mynn
Last synced: 17 days ago
JSON representation
Pure Python/NumPy neural network library extending MyGrad
- Host: GitHub
- URL: https://github.com/davidmascharka/mynn
- Owner: davidmascharka
- License: mit
- Created: 2018-03-26T17:45:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-04-06T16:31:48.000Z (7 months ago)
- Last Synced: 2024-10-12T16:45:44.113Z (about 1 month ago)
- Language: Python
- Homepage: https://pypi.org/project/mynn/
- Size: 1.14 MB
- Stars: 21
- Watchers: 7
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# MyNN
A pure-Python neural network library based on the amazing
[MyGrad](https://github.com/rsokl/MyGrad).`mynn` was created as an extension to `mygrad` for rapid prototyping of neural networks with minimal dependencies, a
clean code base with excellent documentation, and as a learning tool.## Installation Instructions
If you already have MyGrad installed, clone MyNN, navigate to the resulting directory, and
run``` shell
python setup.py develop
```If you don't have MyGrad installed, then you can run
``` shell
git clone https://github.com/rsokl/MyGrad.git
cd MyGrad
python setup.py develop
```Then clone and install this repository.
## Quickstart
Please see the [example notebooks](examples/) for a gentle introduction.