Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jiegec/nn
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jiegec/nn
- Owner: jiegec
- Created: 2017-11-27T04:02:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-24T06:58:43.000Z (about 6 years ago)
- Last Synced: 2024-10-26T22:48:56.512Z (3 months ago)
- Language: C++
- Size: 7.81 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A naive implementation of backpropagation neutral network
==================Example output:
```
Let's test!
0 0
answer: a^b=0 a&b=0 a|b=0
0 1
answer: a^b=1 a&b=0 a|b=1
1 0
answer: a^b=1 a&b=0 a|b=1
1 1
answer: a^b=0 a&b=1 a|b=1
```## Thank these websites for helping me understand:
http://www.emergentmind.com/neural-network
https://sushant-choudhary.github.io/blog/2017/11/25/a-friendly-introduction-to-backrop-in-python.html
https://karpathy.github.io/neuralnets/