#include "gnn_trainer.h"Include dependency graph for gnn_rprop.h:

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

Go to the source code of this file.
Functions | |
| gnn_trainer * | gnn_rprop_new (gnn_node *node, gnn_criterion *crit, gnn_dataset *data, double delta0, double deltamax) |
| Creates a new RPROP trainer. | |
| gnn_trainer * | gnn_rprop_standard_new (gnn_node *node, gnn_criterion *crit, gnn_dataset *data) |
| Creates a standard RPROP trainer. | |
| int | gnn_rprop_set_delta0 (gnn_trainer *trainer, double delta0) |
Sets
. | |
| double | gnn_rprop_get_delta0 (gnn_trainer *trainer) |
Gets
. | |
| int | gnn_rprop_set_deltamin (gnn_trainer *trainer, double deltamin) |
Sets
. | |
| double | gnn_rprop_get_deltamin (gnn_trainer *trainer) |
Gets
. | |
| int | gnn_rprop_set_deltamax (gnn_trainer *trainer, double deltamax) |
Sets
. | |
| double | gnn_rprop_get_deltamax (gnn_trainer *trainer) |
Gets
. | |
| int | gnn_rprop_set_nup (gnn_trainer *trainer, double nup) |
Sets
. | |
| double | gnn_rprop_get_nup (gnn_trainer *trainer) |
| int | gnn_rprop_set_num (gnn_trainer *trainer, double num) |
Sets
. | |
| double | gnn_rprop_get_num (gnn_trainer *trainer) |
|
|
This function returns
Definition at line 385 of file gnn_rprop.c. |
|
|
This function returns
Definition at line 491 of file gnn_rprop.c. |
|
|
This function returns
Definition at line 438 of file gnn_rprop.c. |
|
|
Definition at line 595 of file gnn_rprop.c. |
|
|
Definition at line 543 of file gnn_rprop.c. |
|
||||||||||||||||||||||||
|
This function creates a RPROP trainer (gnn_rprop).
Definition at line 243 of file gnn_rprop.c. |
|
||||||||||||
|
This function sets a new value for Its value should be stricly positive.
Definition at line 356 of file gnn_rprop.c. |
|
||||||||||||
|
This function sets a new value for Its value should be stricly positive.
Definition at line 462 of file gnn_rprop.c. |
|
||||||||||||
|
This function sets a new value for Its value should be stricly positive.
Definition at line 409 of file gnn_rprop.c. |
|
||||||||||||
|
This function sets a new value for
Its value should be within
Definition at line 567 of file gnn_rprop.c. |
|
||||||||||||
|
This function sets a new value for Its value should be greater than 1.
Definition at line 515 of file gnn_rprop.c. |
|
||||||||||||||||
|
This function creates a RPROP trainer (gnn_rprop). The initial learning rate
Definition at line 334 of file gnn_rprop.c. |
1.2.18