#include "cuda.h"#include "image.h"#include "activations.h"#include "layer.h"#include "network.h"

Go to the source code of this file.
Typedefs | |
| typedef layer | deconvolutional_layer |
Functions | |
| void | backward_deconvolutional_layer (deconvolutional_layer layer, network_state state) |
| int | deconvolutional_out_height (deconvolutional_layer layer) |
| int | deconvolutional_out_width (deconvolutional_layer layer) |
| void | forward_deconvolutional_layer (const deconvolutional_layer layer, network_state state) |
| image | get_deconvolutional_delta (deconvolutional_layer layer) |
| image | get_deconvolutional_filter (deconvolutional_layer layer, int i) |
| image | get_deconvolutional_image (deconvolutional_layer layer) |
| deconvolutional_layer | make_deconvolutional_layer (int batch, int h, int w, int c, int n, int size, int stride, ACTIVATION activation) |
| void | resize_deconvolutional_layer (deconvolutional_layer *layer, int h, int w) |
| void | update_deconvolutional_layer (deconvolutional_layer layer, float learning_rate, float momentum, float decay) |
| typedef layer deconvolutional_layer |
Definition at line 10 of file deconvolutional_layer.h.
| void backward_deconvolutional_layer | ( | deconvolutional_layer | layer, |
| network_state | state | ||
| ) |
Definition at line 156 of file deconvolutional_layer.c.
| int deconvolutional_out_height | ( | deconvolutional_layer | layer | ) |
Definition at line 11 of file deconvolutional_layer.c.
| int deconvolutional_out_width | ( | deconvolutional_layer | layer | ) |
Definition at line 17 of file deconvolutional_layer.c.
| void forward_deconvolutional_layer | ( | const deconvolutional_layer | layer, |
| network_state | state | ||
| ) |
Definition at line 130 of file deconvolutional_layer.c.
Definition at line 37 of file deconvolutional_layer.c.
| image get_deconvolutional_filter | ( | deconvolutional_layer | layer, |
| int | i | ||
| ) |
Definition at line 28 of file deconvolutional_layer.c.
| deconvolutional_layer make_deconvolutional_layer | ( | int | batch, |
| int | h, | ||
| int | w, | ||
| int | c, | ||
| int | n, | ||
| int | size, | ||
| int | stride, | ||
| ACTIVATION | activation | ||
| ) |
Definition at line 46 of file deconvolutional_layer.c.
| void resize_deconvolutional_layer | ( | deconvolutional_layer * | layer, |
| int | h, | ||
| int | w | ||
| ) |
Definition at line 106 of file deconvolutional_layer.c.
| void update_deconvolutional_layer | ( | deconvolutional_layer | layer, |
| float | learning_rate, | ||
| float | momentum, | ||
| float | decay | ||
| ) |
Definition at line 194 of file deconvolutional_layer.c.