![]() |
darknet
v3
|
#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>
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) |
Definition at line 130 of file rnn_layer.c.
Definition at line 89 of file rnn_layer.c.
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.
void update_rnn_layer | ( | layer | l, |
update_args | a | ||
) |
Definition at line 82 of file rnn_layer.c.