ArmNN
 20.02
SoftmaxDescriptor Struct Reference

A SoftmaxDescriptor for the SoftmaxLayer. More...

#include <Descriptors.hpp>

Public Member Functions

 SoftmaxDescriptor ()
 
bool operator== (const SoftmaxDescriptor &rhs) const
 

Public Attributes

float m_Beta
 Exponentiation value. More...
 
int m_Axis
 Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed on. More...
 

Detailed Description

A SoftmaxDescriptor for the SoftmaxLayer.

Definition at line 123 of file Descriptors.hpp.

Constructor & Destructor Documentation

◆ SoftmaxDescriptor()

SoftmaxDescriptor ( )
inline

Definition at line 125 of file Descriptors.hpp.

126  : m_Beta(1.0f)
127  , m_Axis(-1)
128  {}
int m_Axis
Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed o...
float m_Beta
Exponentiation value.

Member Function Documentation

◆ operator==()

bool operator== ( const SoftmaxDescriptor rhs) const
inline

Definition at line 130 of file Descriptors.hpp.

References SoftmaxDescriptor::m_Axis, and SoftmaxDescriptor::m_Beta.

131  {
132  return m_Beta == rhs.m_Beta && m_Axis == rhs.m_Axis;
133  }
int m_Axis
Scalar, defaulted to the last index (-1), specifying the dimension the activation will be performed o...
float m_Beta
Exponentiation value.

Member Data Documentation

◆ m_Axis

◆ m_Beta


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