#include "gnn_node.h"Include dependency graph for gnn_tanh.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| gnn_node * | gnn_tanh_new (int input_size, double a, double b) |
| Creates a Hyperbolic Tangent Activation Function node. | |
| gnn_node * | gnn_tanh_standard_new (int input_size) |
| Creates a standard Hyperbolic Tangent function node. | |
| gnn_node * | gnn_tanh_enhanced_new (int input_size) |
| Creates a Hyperbolic Tangent function node. | |
| double | gnn_tanh_get_a (gnn_node *node) |
Returns the amplitude constant
. | |
| void | gnn_tanh_set_a (gnn_node *node, double a) |
Sets the amplitude constant
. | |
| double | gnn_tanh_get_b (gnn_node *node) |
Gets the streching factor
. | |
| void | gnn_tanh_set_b (gnn_node *node, double b) |
Sets the streching factor
. | |
|
|
This function creates a node of the gnn_tanh type.
where
Definition at line 281 of file gnn_tanh.c. |
|
|
Definition at line 294 of file gnn_tanh.c. |
|
|
Definition at line 320 of file gnn_tanh.c. |
|
||||||||||||||||
|
This function creates a node of the gnn_tanh type. This node computes
where
Definition at line 204 of file gnn_tanh.c. |
|
||||||||||||
|
Definition at line 307 of file gnn_tanh.c. |
|
||||||||||||
|
Definition at line 333 of file gnn_tanh.c. |
|
|
This function creates a layer of the gnn_tanh type:
where
Definition at line 262 of file gnn_tanh.c. |
1.2.18