#include <PowVariable.h>
Inheritance diagram for PLearn::PowVariable:
Public Member Functions | |
PowVariable () | |
Default constructor for persistence. | |
PowVariable (Variable *input, real the_power) | |
PLEARN_DECLARE_OBJECT (PowVariable) | |
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 | symbolicBprop () |
compute a piece of new Var graph that represents the symbolic derivative of this Var | |
Static Public Member Functions | |
void | declareOptions (OptionList &ol) |
redefine this in subclasses: call declareOption(...) for each option, and then call inherited::declareOptions(options) ( see the declareOption function further down) | |
Protected Attributes | |
real | power |
Private Types | |
typedef UnaryVariable | inherited |
Definition at line 54 of file PowVariable.h.
|
Reimplemented from PLearn::UnaryVariable. Definition at line 56 of file PowVariable.h. Referenced by PowVariable(). |
|
Default constructor for persistence.
Definition at line 63 of file PowVariable.h. References power. |
|
Definition at line 57 of file PowVariable.cc. References inherited. |
|
Implements PLearn::Variable. Definition at line 84 of file PowVariable.cc. References PLearn::mypow(), PLearn::Variable::nelems(), and power. |
|
redefine this in subclasses: call declareOption(...) for each option, and then call inherited::declareOptions(options) ( see the declareOption function further down) ex: static void declareOptions(OptionList& ol) { declareOption(ol, "inputsize", &MyObject::inputsize_, OptionBase::buildoption, "the size of the input\n it must be provided"); declareOption(ol, "weights", &MyObject::weights, OptionBase::learntoption, "the learnt model weights"); inherited::declareOptions(ol); } Reimplemented from PLearn::UnaryVariable. Definition at line 62 of file PowVariable.cc. References PLearn::declareOption(), and PLearn::OptionList. |
|
compute output given input
Implements PLearn::Variable. Definition at line 77 of file PowVariable.cc. References PLearn::mypow(), PLearn::Variable::nelems(), and power. |
|
|
|
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 68 of file PowVariable.cc. References PLearn::Var::length(), and PLearn::Var::width(). |
|
compute a piece of new Var graph that represents the symbolic derivative of this Var
Reimplemented from PLearn::Variable. Definition at line 91 of file PowVariable.cc. References PLearn::pow(), and power. |
|
Definition at line 59 of file PowVariable.h. Referenced by bprop(), fprop(), PowVariable(), and symbolicBprop(). |