![]() |
darknet
v3
|
#include "dropout_layer.h"#include "utils.h"#include "cuda.h"#include <stdlib.h>#include <stdio.h>
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) |
| void backward_dropout_layer | ( | dropout_layer | l, |
| network | net | ||
| ) |
Definition at line 50 of file dropout_layer.c.
| void forward_dropout_layer | ( | dropout_layer | l, |
| network | net | ||
| ) |
Definition at line 38 of file dropout_layer.c.
| dropout_layer make_dropout_layer | ( | int | batch, |
| int | inputs, | ||
| float | probability | ||
| ) |
Definition at line 7 of file dropout_layer.c.
| void resize_dropout_layer | ( | dropout_layer * | l, |
| int | inputs | ||
| ) |
Definition at line 28 of file dropout_layer.c.
1.8.13