darknet  v3
Functions
deconvolutional_layer.h File Reference
#include "cuda.h"
#include "image.h"
#include "activations.h"
#include "layer.h"
#include "network.h"
Include dependency graph for deconvolutional_layer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

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 resize_deconvolutional_layer (layer *l, int h, int w)
 
void forward_deconvolutional_layer (const layer l, network net)
 
void update_deconvolutional_layer (layer l, update_args a)
 
void backward_deconvolutional_layer (layer l, network net)
 

Function Documentation

◆ backward_deconvolutional_layer()

void backward_deconvolutional_layer ( layer  l,
network  net 
)

Definition at line 249 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.