Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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++

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