C++ API Reference for Intel® Data Analytics Acceleration Library 2020 Update 1

List of all members
Parameter Class Reference

Parameters for the local response normalization layer. More...

Class Declaration

class DAAL_EXPORT Parameter: public layers::Parameter
{
public:
DAAL_DEPRECATED Parameter(
data_management::NumericTablePtr dimension_ = data_management::HomogenNumericTable<size_t>::create(1, 1, data_management::NumericTableIface::doAllocate, 1),
const double kappa_ = 2,
const double alpha_ = 1.0e-04,
const double beta_ = 0.75,
const size_t nAdjust_ = 5 );
data_management::NumericTablePtr dimension;
double kappa;
double alpha;
double beta;
size_t nAdjust;
DAAL_DEPRECATED_VIRTUAL virtual services::Status check() const;
};

Constructor & Destructor Documentation

DAAL_DEPRECATED Parameter ( data_management::NumericTablePtr  dimension_ = data_management::HomogenNumericTable< size_t >::create(1, 1, data_management::NumericTableIface::doAllocate, 1),
const double  kappa_ = 2,
const double  alpha_ = 1.0e-04,
const double  beta_ = 0.75,
const size_t  nAdjust_ = 5 
)

Constructs parameters of the local response normalization layer

Parameters
[in]dimension_Numeric table of size 1 x 1 with index of type size_t to calculate local response normalization.
[in]kappa_Value of hyper-parameter kappa
[in]alpha_Value of hyper-parameter alpha
[in]beta_Value of hyper-parameter beta
[in]nAdjust_Value of hyper-parameter n
Deprecated:
This item will be removed in a future release.

Member Function Documentation

virtual DAAL_DEPRECATED_VIRTUAL services::Status check ( ) const
virtual

Checks the correctness of the parameter

Returns
Status of computations
Deprecated:
This item will be removed in a future release.

Member Data Documentation

double alpha

Value of hyper-parameter alpha

double beta

Value of hyper-parameter beta

data_management::NumericTablePtr dimension

Numeric table of size 1 x 1 with index of type size_t to calculate local response normalization.

double kappa

Value of hyper-parameter kappa

size_t nAdjust

Value of hyper-parameter n


The documentation for this class was generated from the following file:

For more complete information about compiler optimizations, see our Optimization Notice.