Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rishisankineni/neural-networks-example
A Neural Network in 11 lines of Python code.
https://github.com/rishisankineni/neural-networks-example
Last synced: about 1 month ago
JSON representation
A Neural Network in 11 lines of Python code.
- Host: GitHub
- URL: https://github.com/rishisankineni/neural-networks-example
- Owner: RishiSankineni
- Created: 2016-12-12T00:51:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-12T01:35:23.000Z (about 8 years ago)
- Last Synced: 2024-06-24T23:28:36.040Z (6 months ago)
- Language: Python
- Homepage: http://iamtrask.github.io/2015/07/12/basic-python-network/
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 2 & 3 Layer-Neural-Network
A Neural Network in 11 lines of Python.This tutorial teaches backpropagation via a very simple toy example, a short python implementation.
Reference- http://iamtrask.github.io/2015/07/12/basic-python-network/
Python 3.5 compatible. You only have to modify xrange() to range() in the code, because Py3 doesn't support xrange().