

Go to the source code of this file.
Defines | |
| #define | USET |
Functions | |
| void | backward_rnn_layer (layer l, network_state state) |
| void | forward_rnn_layer (layer l, network_state state) |
| layer | make_rnn_layer (int batch, int inputs, int hidden, int outputs, int steps, ACTIVATION activation, int batch_normalize, int log) |
| void | update_rnn_layer (layer l, int batch, float learning_rate, float momentum, float decay) |
| #define USET |
Definition at line 8 of file rnn_layer.h.
| void backward_rnn_layer | ( | layer | l, |
| network_state | state | ||
| ) |
Definition at line 124 of file rnn_layer.c.
| void forward_rnn_layer | ( | layer | l, |
| network_state | state | ||
| ) |
Definition at line 83 of file rnn_layer.c.
| layer make_rnn_layer | ( | int | batch, |
| int | inputs, | ||
| int | hidden, | ||
| int | outputs, | ||
| int | steps, | ||
| ACTIVATION | activation, | ||
| int | batch_normalize, | ||
| int | log | ||
| ) |
Definition at line 29 of file rnn_layer.c.
| void update_rnn_layer | ( | layer | l, |
| int | batch, | ||
| float | learning_rate, | ||
| float | momentum, | ||
| float | decay | ||
| ) |
Definition at line 76 of file rnn_layer.c.