darknet  v3
logistic_layer.h
Go to the documentation of this file.
1 #ifndef LOGISTIC_LAYER_H
2 #define LOGISTIC_LAYER_H
3 #include "layer.h"
4 #include "network.h"
5 
6 layer make_logistic_layer(int batch, int inputs);
9 
10 #ifdef GPU
11 void forward_logistic_layer_gpu(const layer l, network net);
12 void backward_logistic_layer_gpu(const layer l, network net);
13 #endif
14 
15 #endif
void backward_logistic_layer(const layer l, network net)
void forward_logistic_layer(const layer l, network net)
layer make_logistic_layer(int batch, int inputs)
Definition: darknet.h:119