#include "connected_layer.h"#include "batchnorm_layer.h"#include "utils.h"#include "cuda.h"#include "blas.h"#include "gemm.h"#include <math.h>#include <stdio.h>#include <stdlib.h>#include <string.h>
Go to the source code of this file.
Functions | |
| void | backward_connected_layer (connected_layer l, network_state state) |
| void | denormalize_connected_layer (layer l) |
| void | forward_connected_layer (connected_layer l, network_state state) |
| connected_layer | make_connected_layer (int batch, int inputs, int outputs, ACTIVATION activation, int batch_normalize) |
| void | statistics_connected_layer (layer l) |
| void | update_connected_layer (connected_layer l, int batch, float learning_rate, float momentum, float decay) |
| void backward_connected_layer | ( | connected_layer | l, |
| network_state | state | ||
| ) |
Definition at line 157 of file connected_layer.c.
| void denormalize_connected_layer | ( | layer | l | ) |
Definition at line 194 of file connected_layer.c.
| void forward_connected_layer | ( | connected_layer | l, |
| network_state | state | ||
| ) |
Definition at line 122 of file connected_layer.c.
| connected_layer make_connected_layer | ( | int | batch, |
| int | inputs, | ||
| int | outputs, | ||
| ACTIVATION | activation, | ||
| int | batch_normalize | ||
| ) |
Definition at line 13 of file connected_layer.c.
| void statistics_connected_layer | ( | layer | l | ) |
Definition at line 210 of file connected_layer.c.
| void update_connected_layer | ( | connected_layer | l, |
| int | batch, | ||
| float | learning_rate, | ||
| float | momentum, | ||
| float | decay | ||
| ) |
Definition at line 107 of file connected_layer.c.