The select module selects the specified column from a given input matrix.
More...
|
| | Select (const size_t index=0, const size_t elements=0) |
| | Create the Select object. 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...
|
| |
| OutputDataType & | Delta () const |
| | Get the delta. More...
|
| |
| OutputDataType & | Delta () |
| | Modify the delta. More...
|
| |
| template<typename eT > |
| void | Forward (const arma::Mat< eT > &input, arma::Mat< eT > &output) |
| | Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f. More...
|
| |
| size_t const & | Index () const |
| | Get the column index. More...
|
| |
| size_t const & | NumElements () const |
| | Get the number of elements selected. More...
|
| |
| OutputDataType & | OutputParameter () const |
| | Get the output parameter. More...
|
| |
| OutputDataType & | OutputParameter () |
| | Modify the output parameter. More...
|
| |
| template<typename Archive > |
| void | serialize (Archive &ar, const unsigned int) |
| | Serialize the layer. More...
|
| |
template<typename InputDataType = arma::mat, typename OutputDataType = arma::mat>
class mlpack::ann::Select< InputDataType, OutputDataType >
The select module selects the specified column from a given input matrix.
- Template Parameters
-
| 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 32 of file select.hpp.
| Select |
( |
const size_t |
index = 0, |
|
|
const size_t |
elements = 0 |
|
) |
| |
Create the Select object.
- Parameters
-
| index | The column which should be extracted from the given input. |
| elements | The number of elements that should be used. |
| 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.
Using the results from the feed forward pass.
- Parameters
-
| * | (input) The propagated input activation. |
| gy | The backpropagated error. |
| g | The calculated gradient. |
| OutputDataType& Delta |
( |
| ) |
const |
|
inline |
| OutputDataType& Delta |
( |
| ) |
|
|
inline |
| void Forward |
( |
const arma::Mat< eT > & |
input, |
|
|
arma::Mat< eT > & |
output |
|
) |
| |
Ordinary feed forward pass of a neural network, evaluating the function f(x) by propagating the activity forward through f.
- Parameters
-
| input | Input data used for evaluating the specified function. |
| output | Resulting output activation. |
| size_t const& Index |
( |
| ) |
const |
|
inline |
Get the column index.
Definition at line 78 of file select.hpp.
| size_t const& NumElements |
( |
| ) |
const |
|
inline |
Get the number of elements selected.
Definition at line 81 of file select.hpp.
| OutputDataType& OutputParameter |
( |
| ) |
const |
|
inline |
Get the output parameter.
Definition at line 68 of file select.hpp.
| OutputDataType& OutputParameter |
( |
| ) |
|
|
inline |
Modify the output parameter.
Definition at line 70 of file select.hpp.
| void serialize |
( |
Archive & |
ar, |
|
|
const unsigned |
int |
|
) |
| |
The documentation for this class was generated from the following file: