![]() |
darknet
v3
|
#include "connected_layer.h"
#include "convolutional_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 | |
layer | make_connected_layer (int batch, int inputs, int outputs, ACTIVATION activation, int batch_normalize, int adam) |
void | update_connected_layer (layer l, update_args a) |
void | forward_connected_layer (layer l, network net) |
void | backward_connected_layer (layer l, network net) |
void | denormalize_connected_layer (layer l) |
void | statistics_connected_layer (layer l) |
Definition at line 169 of file connected_layer.c.
void denormalize_connected_layer | ( | layer | l | ) |
Definition at line 199 of file connected_layer.c.
Definition at line 151 of file connected_layer.c.
layer make_connected_layer | ( | int | batch, |
int | inputs, | ||
int | outputs, | ||
ACTIVATION | activation, | ||
int | batch_normalize, | ||
int | adam | ||
) |
Definition at line 14 of file connected_layer.c.
void statistics_connected_layer | ( | layer | l | ) |
Definition at line 215 of file connected_layer.c.
void update_connected_layer | ( | layer | l, |
update_args | a | ||
) |
Definition at line 132 of file connected_layer.c.