n2p2 - A neural network potential package
|
Base class for different weight update methods. More...
#include <Updater.h>
Public Member Functions | |
virtual void | setState (double *state)=0 |
Set pointer to current state. | |
virtual void | setError (double const *const error, std::size_t const size=1)=0 |
Set pointer to current error vector. | |
virtual void | setJacobian (double const *const jacobian, std::size_t const columns=1)=0 |
Set pointer to current Jacobi matrix. | |
virtual void | update ()=0 |
Perform single update of state vector. | |
virtual std::string | status (std::size_t epoch) const =0 |
Status report. | |
virtual std::vector< std::string > | statusHeader () const =0 |
Header for status report file. | |
virtual std::vector< std::string > | info () const =0 |
Information about this updater. | |
virtual void | setupTiming (std::string const &prefix="upd") |
Activate detailed timing. | |
virtual void | resetTimingLoop () |
Start a new timing loop (e.g. | |
virtual std::map< std::string, Stopwatch > | getTiming () const |
Return timings gathered in stopwatch map. | |
Protected Member Functions | |
Updater (std::size_t const sizeState) | |
Constructor. | |
Protected Attributes | |
bool | timing |
Whether detailed timing is enabled. | |
bool | timingReset |
Internal loop timer reset switch. | |
std::size_t | sizeState |
Number of neural network connections (weights + biases). | |
std::string | prefix |
Prefix for timing stopwatches. | |
std::map< std::string, Stopwatch > | sw |
Stopwatch map for timing. | |
|
protected |
Constructor.
[in] | sizeState | Size of the state vector (number of parameters to optimize). |
Definition at line 22 of file Updater.cpp.
References prefix, sizeState, timing, and timingReset.
Referenced by nnp::GradientDescent::GradientDescent(), and nnp::KalmanFilter::KalmanFilter().
|
pure virtual |
Set pointer to current state.
[in,out] | state | Pointer to state vector (weights vector), will be changed in-place upon calling update(). |
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
pure virtual |
Set pointer to current error vector.
[in] | error | Pointer to error (difference between reference and neural network potential output). |
[in] | size | Number of error vector entries. |
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
pure virtual |
Set pointer to current Jacobi matrix.
[in] | jacobian | Derivatives of error with respect to weights. |
[in] | columns | Number of gradients provided. |
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
pure virtual |
Perform single update of state vector.
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
pure virtual |
Status report.
[in] | epoch | Current epoch. |
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
pure virtual |
Header for status report file.
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
pure virtual |
Information about this updater.
Implemented in nnp::GradientDescent, and nnp::KalmanFilter.
|
virtual |
|
virtual |
Start a new timing loop (e.g.
epoch).
Definition at line 42 of file Updater.cpp.
References timingReset.
|
virtual |
Return timings gathered in stopwatch map.
Definition at line 37 of file Updater.cpp.
References sw.
|
protected |
Whether detailed timing is enabled.
Definition at line 106 of file Updater.h.
Referenced by setupTiming(), and Updater().
|
protected |
Internal loop timer reset switch.
Definition at line 108 of file Updater.h.
Referenced by resetTimingLoop(), and Updater().
|
protected |
Number of neural network connections (weights + biases).
Definition at line 110 of file Updater.h.
Referenced by nnp::GradientDescent::GradientDescent(), nnp::GradientDescent::info(), nnp::KalmanFilter::info(), info(), nnp::KalmanFilter::KalmanFilter(), nnp::KalmanFilter::setState(), nnp::GradientDescent::status(), nnp::KalmanFilter::status(), nnp::GradientDescent::update(), and Updater().
|
protected |
Prefix for timing stopwatches.
Definition at line 112 of file Updater.h.
Referenced by info(), setupTiming(), and Updater().
|
protected |