darknet  v3
Functions
rnn_layer.c File Reference
#include "rnn_layer.h"
#include "connected_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 rnn_layer.c:

Go to the source code of this file.

Functions

layer make_rnn_layer (int batch, int inputs, int outputs, int steps, ACTIVATION activation, int batch_normalize, int adam)
 
void update_rnn_layer (layer l, update_args a)
 
void forward_rnn_layer (layer l, network net)
 
void backward_rnn_layer (layer l, network net)
 

Function Documentation

◆ backward_rnn_layer()

void backward_rnn_layer ( layer  l,
network  net 
)

Definition at line 130 of file rnn_layer.c.

◆ forward_rnn_layer()

void forward_rnn_layer ( layer  l,
network  net 
)

Definition at line 89 of file rnn_layer.c.

◆ make_rnn_layer()

layer make_rnn_layer ( int  batch,
int  inputs,
int  outputs,
int  steps,
ACTIVATION  activation,
int  batch_normalize,
int  adam 
)

Definition at line 29 of file rnn_layer.c.

◆ update_rnn_layer()

void update_rnn_layer ( layer  l,
update_args  a 
)

Definition at line 82 of file rnn_layer.c.