24 #ifndef __SOFTMAX_TYPES_H__
25 #define __SOFTMAX_TYPES_H__
27 #include "algorithms/algorithm.h"
28 #include "data_management/data/numeric_table.h"
29 #include "data_management/data/homogen_numeric_table.h"
30 #include "services/daal_defines.h"
91 class DAAL_EXPORT Input :
public daal::algorithms::Input
104 Input(
const Input& other) : daal::algorithms::Input(other){}
109 DAAL_DEPRECATED_VIRTUAL
virtual ~Input() {}
116 data_management::NumericTablePtr
get(InputId id)
const;
123 void set(InputId
id,
const data_management::NumericTablePtr &ptr);
132 services::Status check(
const daal::algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
140 class DAAL_EXPORT Result :
public daal::algorithms::Result
143 DECLARE_SERIALIZABLE_CAST(Result);
153 DAAL_DEPRECATED_VIRTUAL
virtual ~Result() {};
163 template <
typename algorithmFPType>
164 DAAL_EXPORT services::Status allocate(
const daal::algorithms::Input *input,
const daal::algorithms::Parameter *par,
const int method);
171 data_management::NumericTablePtr
get(ResultId id)
const;
178 void set(ResultId
id,
const data_management::NumericTablePtr &ptr);
188 services::Status check(
const daal::algorithms::Input *in,
const daal::algorithms::Parameter *par,
int method)
const DAAL_C11_OVERRIDE;
192 template<
typename Archive,
bool onDeserialize>
193 services::Status serialImpl(Archive *arch)
195 return daal::algorithms::Result::serialImpl<Archive, onDeserialize>(arch);
198 typedef services::SharedPtr<Result> ResultPtr;
202 using interface1::Input;
203 using interface1::Result;
204 using interface1::ResultPtr;
daal::algorithms::math::softmax::interface1::Input::Input
Input(const Input &other)
Definition: softmax_types.h:104
daal::algorithms::math::softmax::data
Definition: softmax_types.h:67
daal::algorithms::math::softmax::InputId
InputId
Definition: softmax_types.h:65
daal::algorithms::math::softmax::ResultId
ResultId
Definition: softmax_types.h:75
daal::algorithms::math::softmax::defaultDense
Definition: softmax_types.h:58
daal::algorithms::math::softmax::interface1::Result
Results obtained with the compute() method of the softmax function in the batch processing mode...
Definition: softmax_types.h:140
daal::algorithms::math::softmax::Method
Method
Definition: softmax_types.h:56
daal::algorithms::math::softmax::value
Definition: softmax_types.h:77
daal::algorithms::math::softmax::interface1::Input
Input objects for the softmax function
Definition: softmax_types.h:91