Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# SimpleNeuralNetwork
This is a C++ implement of simple neural network. It's based on video [Neural Net in C++ Tutorial](https://vimeo.com/19569529) by David Miller.
# Test in Ubuntu
1 Gernerate training data to slove XOR problem
1 Generate training data to solve XOR problem
```
g++ ./makeTrainingSamples.cpp -o makeTrainingSamples
./makeTrainingSamples > out.txt
```
2 Test neural netwrok
2 Test neural network
```
g++ ./neural-net.cpp -o neural-net
./neural-net
```
And you will get the result!
And you will get results!