173 #ifdef AIDEBUG_PRINT_MODULE_SPECS
const aicore_layertype_t * ailayer_sigmoid_type
Sigmoid layer type.
void ailayer_sigmoid_backward(ailayer_t *self)
Calculate the backward pass for the given Sigmoid layer.
ailayer_t * ailayer_sigmoid(ailayer_sigmoid_t *layer, ailayer_t *input_layer)
Initialize and connect the given Sigmoid layer.
void ailayer_sigmoid_forward(ailayer_t *self)
Calculate the forward pass for given Sigmoid layer.
void ailayer_sigmoid_calc_result_shape(ailayer_t *self)
Calculate the shape of the result tensor.
void ailayer_sigmoid_print_specs(const ailayer_t *self, int(*print)(const char *format,...))
Print the layer specification.
Type indicator of the layer.
Definition: aifes_core.h:81
General Sigmoid layer struct.
Definition: ailayer_sigmoid.h:50
void(* sigmoid)(const aitensor_t *x, aitensor_t *result)
Required math function: Sigmoid.
Definition: ailayer_sigmoid.h:69
void(* multiply)(const aitensor_t *a, const aitensor_t *b, aitensor_t *result)
Required math function: Element wise tensor multiplication.
Definition: ailayer_sigmoid.h:90
void(* d_sigmoid)(const aitensor_t *sigmoid_x, aitensor_t *result)
Required math function: Derivative of sigmoid.
Definition: ailayer_sigmoid.h:81
ailayer_t base
Inherited field members from general ailayer struct.
Definition: ailayer_sigmoid.h:51
const aimath_dtype_t * dtype
Data type of the input and inference result values.
Definition: ailayer_sigmoid.h:52
AIfES layer interface.
Definition: aifes_core.h:251
Indicator for the used datatype.
Definition: aifes_math.h:53
A tensor in AIfES.
Definition: aifes_math.h:98