Hard Shrink operator is defined as,. More...
Public Member Functions | |
HardShrink (const double lambda=0.5) | |
Create HardShrink object using specified hyperparameter lambda. More... | |
template < typename DataType > | |
void | Backward (const DataType &input, DataType &gy, DataType &g) |
Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards through f. More... | |
OutputDataType const & | Delta () const |
Get the delta. More... | |
OutputDataType & | Delta () |
Modify the delta. 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... | |
double const & | Lambda () const |
Get the hyperparameter lambda. More... | |
double & | Lambda () |
Modify the hyperparameter lambda. 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... | |
Hard Shrink operator is defined as,.
is set to 0.5 by default.
Definition at line 45 of file hardshrink.hpp.
HardShrink | ( | const double | lambda = 0.5 | ) |
Create HardShrink object using specified hyperparameter lambda.
lambda | Is calculated by multiplying the noise level sigma of the input(noisy image) and a coefficient 'a' which is one of the training parameters. Default value of lambda is 0.5. |
void Backward | ( | const DataType & | input, |
DataType & | gy, | ||
DataType & | g | ||
) |
Ordinary feed backward pass of a neural network, calculating the function f(x) by propagating x backwards through f.
Using the results from the feed forward pass.
input | The propagated input activation f(x). |
gy | The backpropagated error. |
g | The calculated gradient. |
|
inline |
Get the delta.
Definition at line 88 of file hardshrink.hpp.
|
inline |
Modify the delta.
Definition at line 90 of file hardshrink.hpp.
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.
input | Input data used for evaluating the Hard Shrink function. |
output | Resulting output activation. |
|
inline |
Get the hyperparameter lambda.
Definition at line 93 of file hardshrink.hpp.
|
inline |
Modify the hyperparameter lambda.
Definition at line 95 of file hardshrink.hpp.
References HardShrink< InputDataType, OutputDataType >::serialize().
|
inline |
Get the output parameter.
Definition at line 83 of file hardshrink.hpp.
|
inline |
Modify the output parameter.
Definition at line 85 of file hardshrink.hpp.
void serialize | ( | Archive & | ar, |
const uint32_t | |||
) |
Serialize the layer.
Referenced by HardShrink< InputDataType, OutputDataType >::Lambda().