Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tizz98/neural_net
A Neural Net in C++
https://github.com/tizz98/neural_net
Last synced: 9 days ago
JSON representation
A Neural Net in C++
- Host: GitHub
- URL: https://github.com/tizz98/neural_net
- Owner: tizz98
- Created: 2015-03-15T00:40:38.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-15T18:40:30.000Z (over 9 years ago)
- Last Synced: 2024-04-22T15:22:49.726Z (7 months ago)
- Language: C++
- Homepage:
- Size: 133 KB
- Stars: 2
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Neural Net Tutorial
from https://vimeo.com/19569529 and http://millermattson.com/dave/
# To Run
- `$ g++ neural-net-tutorial.cpp -o neural-net`
- compile the neural net program, compiled program in `neural-net`
- `$ g++ makeTraningSamples.cpp -o makeTraningSamples`
- compile the training sample data program, compiled program in `makeTraningSamples`
- `$ ./makeTrainingSamples > /tmp/trainingData.txt`
- run the traning sample data program and redirect all output to a file in `/tmp/`
- `$ ./neural-net > out.txt`
- Results are in `out.txt` or you can leave off `out.txt` to have the results printed to the console