mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
20 lines
447 B
C
20 lines
447 B
C
#ifndef ACTIVATION_LAYER_H
|
|
#define ACTIVATION_LAYER_H
|
|
|
|
#include "activations.h"
|
|
#include "layer.h"
|
|
#include "network.h"
|
|
|
|
layer make_activation_layer(int batch, int inputs, ACTIVATION activation);
|
|
|
|
void forward_activation_layer(layer l, network net);
|
|
void backward_activation_layer(layer l, network net);
|
|
|
|
#ifdef GPU
|
|
void forward_activation_layer_gpu(layer l, network net);
|
|
void backward_activation_layer_gpu(layer l, network net);
|
|
#endif
|
|
|
|
#endif
|
|
|