#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 | local_layer |
Functions |
void | backward_bias (float *bias_updates, float *delta, int batch, int n, int size) |
void | backward_local_layer (local_layer layer, network_state state) |
void | bias_output (float *output, float *biases, int batch, int n, int size) |
void | forward_local_layer (const local_layer layer, network_state state) |
local_layer | make_local_layer (int batch, int h, int w, int c, int n, int size, int stride, int pad, ACTIVATION activation) |
void | update_local_layer (local_layer layer, int batch, float learning_rate, float momentum, float decay) |
Typedef Documentation
Function Documentation
void backward_bias |
( |
float * |
bias_updates, |
|
|
float * |
delta, |
|
|
int |
batch, |
|
|
int |
n, |
|
|
int |
size |
|
) |
| |
void bias_output |
( |
float * |
output, |
|
|
float * |
biases, |
|
|
int |
batch, |
|
|
int |
n, |
|
|
int |
size |
|
) |
| |