darknet  v3
dropout_layer.h
Go to the documentation of this file.
1 #ifndef DROPOUT_LAYER_H
2 #define DROPOUT_LAYER_H
3 
4 #include "layer.h"
5 #include "network.h"
6 
8 
9 dropout_layer make_dropout_layer(int batch, int inputs, float probability);
10 
13 void resize_dropout_layer(dropout_layer *l, int inputs);
14 
15 #ifdef GPU
18 
19 #endif
20 #endif
layer dropout_layer
Definition: dropout_layer.h:7
dropout_layer make_dropout_layer(int batch, int inputs, float probability)
Definition: dropout_layer.c:7
void resize_dropout_layer(dropout_layer *l, int inputs)
Definition: dropout_layer.c:28
void forward_dropout_layer(dropout_layer l, network net)
Definition: dropout_layer.c:38
void forward_dropout_layer_gpu(dropout_layer layer, network net)
void backward_dropout_layer(dropout_layer l, network net)
Definition: dropout_layer.c:50
void backward_dropout_layer_gpu(dropout_layer layer, network net)
Definition: darknet.h:119