• Stars
    star
    128
  • Rank 279,648 (Top 6 %)
  • Language
    C++
  • Created almost 9 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple neural network implement in c++

SimpleNeuralNetwork

This is a C++ implement of simple neural network. It's based on video Neural Net in C++ Tutorial by David Miller.

Test in Ubuntu

1 Gernerate training data to slove XOR problem

    g++ ./makeTrainingSamples.cpp -o makeTrainingSamples
    ./makeTrainingSamples > out.txt

2 Test neural netwrok

    g++ ./neural-net.cpp -o neural-net
    ./neural-net

And you will get the result!