AIfES 2  2.0.0
ailayer_softsign.h
Go to the documentation of this file.
1 
38 #ifndef SOFTSIGN_LAYER
39 #define SOFTSIGN_LAYER
40 
41 #include "core/aifes_core.h"
42 
44 
55 
66  void (*softsign)(const aitensor_t *x, aitensor_t *result);
67 
78  void (*d_softsign)(const aitensor_t *softsign_x, aitensor_t *result);
79 
87  void (*multiply)(const aitensor_t *a, const aitensor_t *b, aitensor_t *result);
88 
90 };
91 
98 
111 
133 
158 
169 
170 #ifdef AIDEBUG_PRINT_MODULE_SPECS
176 #endif // AIDEBUG_PRINT_MODULE_SPECS
177 
178 #endif // SOFTSIGN_LAYER
AIfES 2 core interface.
ailayer_t * ailayer_softsign(ailayer_softsign_t *layer, ailayer_t *input_layer)
Initialize and connect the given Softsign layer.
void ailayer_softsign_backward(ailayer_t *self)
Calculate the backward pass for the given Softsign layer.
const aicore_layertype_t * ailayer_softsign_type
Softsign layer type.
void ailayer_softsign_forward(ailayer_t *self)
Calculate the forward pass for given Tanh layer.
void ailayer_softsign_calc_result_shape(ailayer_t *self)
Calculate the shape of the result tensor.
void ailayer_softsign_print_specs(const ailayer_t *self)
Print the layer specification.
Type indicator of the layer.
Definition: aifes_core.h:82
General Softsign layer struct.
Definition: ailayer_softsign.h:48
void(* multiply)(const aitensor_t *a, const aitensor_t *b, aitensor_t *result)
Required math function: Element wise tensor multiplication.
Definition: ailayer_softsign.h:87
void(* d_softsign)(const aitensor_t *softsign_x, aitensor_t *result)
Required math function: Derivative of softsign.
Definition: ailayer_softsign.h:78
void(* softsign)(const aitensor_t *x, aitensor_t *result)
Required math function: Softsign.
Definition: ailayer_softsign.h:66
ailayer_t base
Inherited field members from general ailayer struct.
Definition: ailayer_softsign.h:49
AIfES layer interface.
Definition: aifes_core.h:252
A tensor in AIfES.
Definition: aifes_math.h:89