#include <MatRowVariable.h>
Inheritance diagram for PLearn::MatRowVariable:
Public Member Functions | |
MatRowVariable () | |
Default constructor for persistence. | |
MatRowVariable (const Mat &mat, Variable *input) | |
PLEARN_DECLARE_OBJECT (MatRowVariable) | |
virtual void | build () |
Should call simply inherited::build(), then this class's build_(). | |
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 | makeDeepCopyFromShallowCopy (map< const void *, void * > &copies) |
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 Member Functions | |
void | build_ () |
Protected Attributes | |
Mat | m |
Private Types | |
typedef UnaryVariable | inherited |
* Indexing an external Mat or Vec with a variable *
Definition at line 55 of file MatRowVariable.h.
|
Reimplemented from PLearn::UnaryVariable. Definition at line 57 of file MatRowVariable.h. Referenced by MatRowVariable(). |
|
Default constructor for persistence.
Definition at line 64 of file MatRowVariable.h. |
|
Definition at line 56 of file MatRowVariable.cc. References build_(), inherited, and PLearn::Mat. |
|
Implements PLearn::Variable. Definition at line 110 of file MatRowVariable.cc. |
|
Should call simply inherited::build(), then this class's build_(). This method should be callable again at later times, after modifying some option fields to change the "architecture" of the object. Reimplemented from PLearn::Variable. Definition at line 63 of file MatRowVariable.cc. References build_(). |
|
This method should be redefined in subclasses and do the actual building of the object according to previously set option fields. Constructors can just set option fields, and then call build_. This method is NOT virtual, and will typically be called only from three places: a constructor, the public virtual build() method, and possibly the public virtual read method (which calls its parent's read). build_() can assume that it's parent's build_ has already been called. Reimplemented from PLearn::Variable. Definition at line 70 of file MatRowVariable.cc. References PLERROR. Referenced by build(), and MatRowVariable(). |
|
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 77 of file MatRowVariable.cc. References PLearn::declareOption(), and PLearn::OptionList. |
|
compute output given input
Implements PLearn::Variable. Definition at line 106 of file MatRowVariable.cc. References m. |
|
Reimplemented from PLearn::UnaryVariable. Definition at line 98 of file MatRowVariable.cc. References PLearn::deepCopyField(), and m. |
|
|
|
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 84 of file MatRowVariable.cc. References PLearn::TMat< T >::isNotEmpty(), m, and PLearn::TMat< T >::width(). |
|
compute a piece of new Var graph that represents the symbolic derivative of this Var
Reimplemented from PLearn::Variable. Definition at line 112 of file MatRowVariable.cc. |
|
Definition at line 60 of file MatRowVariable.h. Referenced by fprop(), makeDeepCopyFromShallowCopy(), and recomputeSize(). |