![]() |
darknet
v3
|
#include "deconvolutional_layer.h"
#include "convolutional_layer.h"
#include "batchnorm_layer.h"
#include "utils.h"
#include "im2col.h"
#include "col2im.h"
#include "blas.h"
#include "gemm.h"
#include <stdio.h>
#include <time.h>
Go to the source code of this file.
Functions | |
void | bilinear_init (layer l) |
layer | make_deconvolutional_layer (int batch, int h, int w, int c, int n, int size, int stride, int padding, ACTIVATION activation, int batch_normalize, int adam) |
void | denormalize_deconvolutional_layer (layer l) |
void | resize_deconvolutional_layer (layer *l, int h, int w) |
void | forward_deconvolutional_layer (const layer l, network net) |
void | backward_deconvolutional_layer (layer l, network net) |
void | update_deconvolutional_layer (layer l, update_args a) |
Definition at line 249 of file deconvolutional_layer.c.
void bilinear_init | ( | layer | l | ) |
Definition at line 18 of file deconvolutional_layer.c.
void denormalize_deconvolutional_layer | ( | layer | l | ) |
Definition at line 168 of file deconvolutional_layer.c.
Definition at line 222 of file deconvolutional_layer.c.
layer make_deconvolutional_layer | ( | int | batch, |
int | h, | ||
int | w, | ||
int | c, | ||
int | n, | ||
int | size, | ||
int | stride, | ||
int | padding, | ||
ACTIVATION | activation, | ||
int | batch_normalize, | ||
int | adam | ||
) |
Definition at line 35 of file deconvolutional_layer.c.
void resize_deconvolutional_layer | ( | layer * | l, |
int | h, | ||
int | w | ||
) |
Definition at line 183 of file deconvolutional_layer.c.
void update_deconvolutional_layer | ( | layer | l, |
update_args | a | ||
) |
Definition at line 290 of file deconvolutional_layer.c.