darknet  v3
Functions
dropout_layer.c File Reference
#include "dropout_layer.h"
#include "utils.h"
#include "cuda.h"
#include <stdlib.h>
#include <stdio.h>
Include dependency graph for dropout_layer.c:

Go to the source code of this file.

Functions

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 backward_dropout_layer (dropout_layer l, network net)
 

Function Documentation

◆ backward_dropout_layer()

void backward_dropout_layer ( dropout_layer  l,
network  net 
)

Definition at line 50 of file dropout_layer.c.

◆ forward_dropout_layer()

void forward_dropout_layer ( dropout_layer  l,
network  net 
)

Definition at line 38 of file dropout_layer.c.

◆ make_dropout_layer()

dropout_layer make_dropout_layer ( int  batch,
int  inputs,
float  probability 
)

Definition at line 7 of file dropout_layer.c.

◆ resize_dropout_layer()

void resize_dropout_layer ( dropout_layer l,
int  inputs 
)

Definition at line 28 of file dropout_layer.c.