├── CMakeLists.txt ├── Doxyfile.in ├── include └── neural │ ├── Activation.h │ ├── Layer.h │ ├── Network.h │ └── Neuron.h └── src ├── Layer.cpp ├── Network.cpp └── Neuron.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /include/neural/Activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/include/neural/Activation.h -------------------------------------------------------------------------------- /include/neural/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/include/neural/Layer.h -------------------------------------------------------------------------------- /include/neural/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/include/neural/Network.h -------------------------------------------------------------------------------- /include/neural/Neuron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/include/neural/Neuron.h -------------------------------------------------------------------------------- /src/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/src/Layer.cpp -------------------------------------------------------------------------------- /src/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/src/Network.cpp -------------------------------------------------------------------------------- /src/Neuron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T045T/neural/HEAD/src/Neuron.cpp --------------------------------------------------------------------------------