#include <NegateElementsVariable.h>
Inheritance diagram for PLearn::NegateElementsVariable:
Public Member Functions | |
NegateElementsVariable () | |
Default constructor for persistence. | |
NegateElementsVariable (Variable *input) | |
PLEARN_DECLARE_OBJECT (NegateElementsVariable) | |
virtual void | recomputeSize (int &l, int &w) const |
Recomputes the length l and width w that this variable should have, according to its parent variables. | |
virtual void | fprop () |
compute output given input | |
virtual void | bprop () |
virtual void | bbprop () |
compute an approximation to diag(d^2/dinput^2) given diag(d^2/doutput^2), with diag(d^2/dinput^2) ~=~ (doutput/dinput)' diag(d^2/doutput^2) (doutput/dinput) In particular: if 'C' depends on 'y' and 'y' depends on x ... | |
virtual void | symbolicBprop () |
compute a piece of new Var graph that represents the symbolic derivative of this Var | |
virtual void | rfprop () |
Private Types | |
typedef UnaryVariable | inherited |
Definition at line 54 of file NegateElementsVariable.h.
|
Reimplemented from PLearn::UnaryVariable. Definition at line 56 of file NegateElementsVariable.h. Referenced by NegateElementsVariable(). |
|
Default constructor for persistence.
Definition at line 60 of file NegateElementsVariable.h. |
|
Definition at line 57 of file NegateElementsVariable.cc. References inherited. |
|
compute an approximation to diag(d^2/dinput^2) given diag(d^2/doutput^2), with diag(d^2/dinput^2) ~=~ (doutput/dinput)' diag(d^2/doutput^2) (doutput/dinput) In particular: if 'C' depends on 'y' and 'y' depends on x ... d^2C/dx^2 = d^2C/dy^2 * (dy/dx)^2 + dC/dy * d^2y/dx^2 (diaghessian) (gradient) Reimplemented from PLearn::Variable. Definition at line 85 of file NegateElementsVariable.cc. References k, PLearn::Var::length(), and PLearn::Variable::nelems(). |
|
Implements PLearn::Variable. Definition at line 78 of file NegateElementsVariable.cc. References k, and PLearn::Variable::nelems(). |
|
compute output given input
Implements PLearn::Variable. Definition at line 71 of file NegateElementsVariable.cc. References k, and PLearn::Variable::nelems(). |
|
|
|
Recomputes the length l and width w that this variable should have, according to its parent variables. This is used for ex. by sizeprop() The default version stupidly returns the current dimensions, so make sure to overload it in subclasses if this is not appropriate. Reimplemented from PLearn::Variable. Definition at line 62 of file NegateElementsVariable.cc. References PLearn::Var::length(), and PLearn::Var::width(). |
|
Reimplemented from PLearn::Variable. Definition at line 101 of file NegateElementsVariable.cc. References k, PLearn::TVec< T >::length(), PLearn::Variable::nelems(), and PLearn::UnaryVariable::resizeRValue(). |
|
compute a piece of new Var graph that represents the symbolic derivative of this Var
Reimplemented from PLearn::Variable. Definition at line 94 of file NegateElementsVariable.cc. |