#include "crnn_layer.h"#include "convolutional_layer.h"#include "utils.h"#include "cuda.h"#include "blas.h"#include "gemm.h"#include <math.h>#include <stdio.h>#include <stdlib.h>#include <string.h>
Go to the source code of this file.
Functions | |
| void | backward_crnn_layer (layer l, network_state state) |
| void | forward_crnn_layer (layer l, network_state state) |
| static void | increment_layer (layer *l, int steps) |
| layer | make_crnn_layer (int batch, int h, int w, int c, int hidden_filters, int output_filters, int steps, ACTIVATION activation, int batch_normalize) |
| void | update_crnn_layer (layer l, int batch, float learning_rate, float momentum, float decay) |
| void backward_crnn_layer | ( | layer | l, |
| network_state | state | ||
| ) |
Definition at line 132 of file crnn_layer.c.
| void forward_crnn_layer | ( | layer | l, |
| network_state | state | ||
| ) |
Definition at line 91 of file crnn_layer.c.
| static void increment_layer | ( | layer * | l, |
| int | steps | ||
| ) | [static] |
Definition at line 13 of file crnn_layer.c.
| layer make_crnn_layer | ( | int | batch, |
| int | h, | ||
| int | w, | ||
| int | c, | ||
| int | hidden_filters, | ||
| int | output_filters, | ||
| int | steps, | ||
| ACTIVATION | activation, | ||
| int | batch_normalize | ||
| ) |
Definition at line 29 of file crnn_layer.c.
| void update_crnn_layer | ( | layer | l, |
| int | batch, | ||
| float | learning_rate, | ||
| float | momentum, | ||
| float | decay | ||
| ) |
Definition at line 84 of file crnn_layer.c.