#include "cuda.h"
#include "image.h"
#include "activations.h"
#include "layer.h"
#include "network.h"
Go to the source code of this file.
|
local_layer | make_local_layer (int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation) |
|
void | forward_local_layer (const local_layer layer, network net) |
|
void | backward_local_layer (local_layer layer, network net) |
|
void | update_local_layer (local_layer layer, update_args a) |
|
void | bias_output (float *output, float *biases, int batch, int n, int size) |
|
void | backward_bias (float *bias_updates, float *delta, int batch, int n, int size) |
|
◆ local_layer
◆ backward_bias()
void backward_bias |
( |
float * |
bias_updates, |
|
|
float * |
delta, |
|
|
int |
batch, |
|
|
int |
n, |
|
|
int |
size |
|
) |
| |
◆ backward_local_layer()
◆ bias_output()
void bias_output |
( |
float * |
output, |
|
|
float * |
biases, |
|
|
int |
batch, |
|
|
int |
n, |
|
|
int |
size |
|
) |
| |
◆ forward_local_layer()
◆ make_local_layer()
local_layer make_local_layer |
( |
int |
batch, |
|
|
int |
h, |
|
|
int |
w, |
|
|
int |
c, |
|
|
int |
n, |
|
|
int |
size, |
|
|
int |
stride, |
|
|
int |
pad, |
|
|
ACTIVATION |
activation |
|
) |
| |
◆ update_local_layer()