#include "gnn_node.h"#include "gnn_criterion.h"Include dependency graph for gnn_weight_elimination.h:

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

Go to the source code of this file.
Functions | |
| gnn_criterion * | gnn_weight_elimination_new (gnn_criterion *crit, double nu, double wp, gnn_node *node) |
| Creates a Weight Elimination regularization for gnn_weight : Affine / Linear Transform. | |
| gnn_criterion * | gnn_weight_elimination_new_with_type (gnn_criterion *crit, double nu, double wp, gnn_node *node, const char *type) |
| Creates a Weight Elimination regularization for a given type. | |
| gnn_criterion * | gnn_weight_elimination_new_with_pbundle (gnn_criterion *crit, double nu, double wp, gnn_pbundle *pb) |
| Creates a Weight Elimination regularization for a given pbundle. | |
| int | gnn_weight_elimination_prun (gnn_criterion *crit, double th) |
| Perform parameter pruning. | |
|
||||||||||||||||||||
|
This function builds a new gnn_weight_elimination regularizer for all gnn_weight : Affine / Linear Transform nodes contained in the given node node.
Definition at line 273 of file gnn_weight_elimination.c. |
|
||||||||||||||||||||
|
This function builds a new gnn_weight_elimination regularizer for all parameters contained in the given parameter bundle pb.
Definition at line 361 of file gnn_weight_elimination.c. |
|
||||||||||||||||||||||||
|
This function builds a new gnn_weight_elimination regularizer for all parameters that pertain to nodes of type type contained in the given node node.
Definition at line 316 of file gnn_weight_elimination.c. |
|
||||||||||||
|
This function pruns the penalized parameters that fall below the given threshold th in magnitude. These are frozen to zero.
Definition at line 551 of file gnn_weight_elimination.c. |
1.2.18