![]() |
darknet
v3
|
#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 | |
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, update_args a) |
void | forward_crnn_layer (layer l, network net) |
void | backward_crnn_layer (layer l, network net) |
Definition at line 132 of file crnn_layer.c.
Definition at line 91 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, |
update_args | a | ||
) |
Definition at line 84 of file crnn_layer.c.