1 #ifndef DROPOUT_LAYER_H 2 #define DROPOUT_LAYER_H
dropout_layer make_dropout_layer(int batch, int inputs, float probability)
void resize_dropout_layer(dropout_layer *l, int inputs)
void forward_dropout_layer(dropout_layer l, network net)
void forward_dropout_layer_gpu(dropout_layer layer, network net)
void backward_dropout_layer(dropout_layer l, network net)
void backward_dropout_layer_gpu(dropout_layer layer, network net)