NNAD
1.0.0
Neural Network Analytic Derivatives
|
NNAD
stands for Neural Network Analytic Derivatives and is a C++ implementation of the analytic derivatives of a feed-forward neural network with arbitrary architecture with respect to its free parameters. We adopeted the back-propagation method that makes the computation of derivatives in the context of minimisation problems particularly performing.
The NNAD
library only relies on cmake
for configuration and installation. This is done by following the standar procedure:
Alternatively, one can use Conda
:
A detailed documentation of the code generated with Doxygen can be found here.
A simple example of the usage of NNAD
, where analytic derivatives are compared to a numerical evaluation, can be found in tests/main.cc
. More elaborate examples, where NNAD
is used in minimisation problems, are instead collected here.