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

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

Go to the source code of this file.
Functions | |
| gnn_node * | gnn_logistic_new (int input_size, double a, double b) |
| Creates a Logistic Sigmoid activation function node. | |
| gnn_node * | gnn_logistic_standard_new (int input_size) |
| Creates a standard Logistic Sigmoid function node. | |
| double | gnn_logistic_get_a (gnn_node *node) |
Returns the amplitude constant
. | |
| void | gnn_logistic_set_a (gnn_node *node, double a) |
Sets the amplitude constant
. | |
| double | gnn_logistic_get_b (gnn_node *node) |
Gets the streching factor
. | |
| void | gnn_logistic_set_b (gnn_node *node, double b) |
Sets the streching factor
. | |
|
|
Definition at line 282 of file gnn_logistic.c. |
|
|
Definition at line 308 of file gnn_logistic.c. |
|
||||||||||||||||
|
This function creates a node of the gnn_logistic type. This node computes
where
Definition at line 211 of file gnn_logistic.c. |
|
||||||||||||
|
Definition at line 295 of file gnn_logistic.c. |
|
||||||||||||
|
Definition at line 321 of file gnn_logistic.c. |
|
|
This function creates a node of the gnn_logistic type:
where
Definition at line 269 of file gnn_logistic.c. |
1.2.18