Implementation of the subview layer. More...
Public Member Functions | |
Subview (const size_t inSize=1, const size_t beginRow=0, const size_t endRow=0, const size_t beginCol=0, const size_t endCol=0) | |
Create the Subview layer object using the specified range of input to accept. More... | |
template < typename eT > | |
void | Backward (const arma::Mat< eT > &, const arma::Mat< eT > &gy, arma::Mat< eT > &g) |
Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards trough f. More... | |
size_t const & | BeginCol () const |
Get the width of each sample. More... | |
size_t & | BeginCol () |
Modify the width of each sample. More... | |
size_t const & | BeginRow () const |
Get the starting row index of subview vector or matrix. More... | |
size_t & | BeginRow () |
Modify the width of each sample. More... | |
OutputDataType const & | Delta () const |
Get the delta. More... | |
OutputDataType & | Delta () |
Modify the delta. More... | |
size_t const & | EndCol () const |
Get the ending column index of subview vector or matrix. More... | |
size_t & | EndCol () |
Modify the width of each sample. More... | |
size_t const & | EndRow () const |
Get the ending row index of subview vector or matrix. More... | |
size_t & | EndRow () |
Modify the width of each sample. More... | |
template < typename InputType , typename OutputType > | |
void | Forward (const InputType &input, OutputType &output) |
Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f. More... | |
size_t | InSize () const |
Get the width of each sample. More... | |
OutputDataType const & | OutputParameter () const |
Get the output parameter. More... | |
OutputDataType & | OutputParameter () |
Modify the output parameter. More... | |
template < typename Archive > | |
void | serialize (Archive &ar, const uint32_t) |
Serialize the layer. More... | |
Implementation of the subview layer.
The subview layer modifies the input to a submatrix of required size.
InputDataType | Type of the input data (arma::colvec, arma::mat, arma::sp_mat or arma::cube). |
OutputDataType | Type of the output data (arma::colvec, arma::mat, arma::sp_mat or arma::cube). |
Definition at line 34 of file subview.hpp.
|
inline |
Create the Subview layer object using the specified range of input to accept.
inSize | Width of sample. |
beginRow | Starting row index. |
endRow | Ending row index. |
beginCol | Starting column index. |
endCol | Ending column index. |
Definition at line 47 of file subview.hpp.
|
inline |
Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards trough f.
Using the results from the feed forward pass.
* | (input) The propagated input activation. |
gy | The backpropagated error. |
g | The calculated gradient. |
Definition at line 115 of file subview.hpp.
|
inline |
Get the width of each sample.
Definition at line 146 of file subview.hpp.
|
inline |
Modify the width of each sample.
Definition at line 148 of file subview.hpp.
|
inline |
Get the starting row index of subview vector or matrix.
Definition at line 136 of file subview.hpp.
|
inline |
Modify the width of each sample.
Definition at line 138 of file subview.hpp.
|
inline |
Get the delta.
Definition at line 128 of file subview.hpp.
|
inline |
Modify the delta.
Definition at line 130 of file subview.hpp.
|
inline |
Get the ending column index of subview vector or matrix.
Definition at line 151 of file subview.hpp.
|
inline |
Modify the width of each sample.
Definition at line 153 of file subview.hpp.
|
inline |
Get the ending row index of subview vector or matrix.
Definition at line 141 of file subview.hpp.
|
inline |
Modify the width of each sample.
Definition at line 143 of file subview.hpp.
|
inline |
Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f.
input | Input data used for evaluating the specified function. |
output | Resulting output activation. |
Definition at line 69 of file subview.hpp.
|
inline |
Get the width of each sample.
Definition at line 133 of file subview.hpp.
|
inline |
Get the output parameter.
Definition at line 123 of file subview.hpp.
|
inline |
Modify the output parameter.
Definition at line 125 of file subview.hpp.
|
inline |
Serialize the layer.
Definition at line 159 of file subview.hpp.