mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
16 lines
406 B
C
16 lines
406 B
C
#ifndef LOGISTIC_LAYER_H
|
|
#define LOGISTIC_LAYER_H
|
|
#include "layer.h"
|
|
#include "network.h"
|
|
|
|
layer make_logistic_layer(int batch, int inputs);
|
|
void forward_logistic_layer(const layer l, network net);
|
|
void backward_logistic_layer(const layer l, network net);
|
|
|
|
#ifdef GPU
|
|
void forward_logistic_layer_gpu(const layer l, network net);
|
|
void backward_logistic_layer_gpu(const layer l, network net);
|
|
#endif
|
|
|
|
#endif
|