Updated README.md

This commit is contained in:
Daniel Brunner
2018-10-05 11:28:34 +02:00
parent d628773720
commit c9a9a0284a

View File

@@ -1,2 +1,18 @@
# DbNeuralNet
DbNeuralNet git module for use in DbSoftware (https://github.com/0xFEEDC0DE64/DbSoftware)
Small library to define and execute a neural net with back propagation. The example applications tries to learn XOR operations.
# Building from source
This project can only be built as part of the project structure [DbSoftware](https://github.com/0xFEEDC0DE64/DbSoftware)
```Shell
git clone https://github.com/0xFEEDC0DE64/DbSoftware.git
cd DbSoftware
git submodule update --init --recursive DbNeuralNet
cd ..
mkdir build_DbSoftware
cd build_DbSoftware
qmake CONFIG+=ccache ../DbSoftware
make -j$(nproc) sub-DbNeuralNet
make sub-DbNeuralNet-install_subtargets
./bin/databasetree
```