darknet  v3
Functions
crnn_layer.c File Reference
#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>
Include dependency graph for crnn_layer.c:

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)
 

Function Documentation

◆ backward_crnn_layer()

void backward_crnn_layer ( layer  l,
network  net 
)

Definition at line 132 of file crnn_layer.c.

◆ forward_crnn_layer()

void forward_crnn_layer ( layer  l,
network  net 
)

Definition at line 91 of file crnn_layer.c.

◆ make_crnn_layer()

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.

◆ update_crnn_layer()

void update_crnn_layer ( layer  l,
update_args  a 
)

Definition at line 84 of file crnn_layer.c.