darknet  v3
Functions
deconvolutional_layer.c File Reference
#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>
Include dependency graph for deconvolutional_layer.c:

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)
 

Function Documentation

◆ backward_deconvolutional_layer()

void backward_deconvolutional_layer ( layer  l,
network  net 
)

Definition at line 249 of file deconvolutional_layer.c.

◆ bilinear_init()

void bilinear_init ( layer  l)

Definition at line 18 of file deconvolutional_layer.c.

◆ denormalize_deconvolutional_layer()

void denormalize_deconvolutional_layer ( layer  l)

Definition at line 168 of file deconvolutional_layer.c.

◆ forward_deconvolutional_layer()

void forward_deconvolutional_layer ( const layer  l,
network  net 
)

Definition at line 222 of file deconvolutional_layer.c.

◆ make_deconvolutional_layer()

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.

◆ resize_deconvolutional_layer()

void resize_deconvolutional_layer ( layer l,
int  h,
int  w 
)

Definition at line 183 of file deconvolutional_layer.c.

◆ update_deconvolutional_layer()

void update_deconvolutional_layer ( layer  l,
update_args  a 
)

Definition at line 290 of file deconvolutional_layer.c.