mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
25 lines
597 B
C
25 lines
597 B
C
|
|
#ifndef GRU_LAYER_H
|
|
#define GRU_LAYER_H
|
|
|
|
#include "activations.h"
|
|
#include "layer.h"
|
|
#include "network.h"
|
|
|
|
layer make_gru_layer(int batch, int inputs, int outputs, int steps, int batch_normalize, int adam);
|
|
|
|
void forward_gru_layer(layer l, network state);
|
|
void backward_gru_layer(layer l, network state);
|
|
void update_gru_layer(layer l, update_args a);
|
|
|
|
#ifdef GPU
|
|
void forward_gru_layer_gpu(layer l, network state);
|
|
void backward_gru_layer_gpu(layer l, network state);
|
|
void update_gru_layer_gpu(layer l, update_args a);
|
|
void push_gru_layer(layer l);
|
|
void pull_gru_layer(layer l);
|
|
#endif
|
|
|
|
#endif
|
|
|