![]() |
darknet
v3
|
#include "logistic_layer.h"
#include "activations.h"
#include "blas.h"
#include "cuda.h"
#include <float.h>
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
Go to the source code of this file.
Functions | |
layer | make_logistic_layer (int batch, int inputs) |
void | forward_logistic_layer (const layer l, network net) |
void | backward_logistic_layer (const layer l, network net) |
Definition at line 48 of file logistic_layer.c.
Definition at line 38 of file logistic_layer.c.
layer make_logistic_layer | ( | int | batch, |
int | inputs | ||
) |
Definition at line 12 of file logistic_layer.c.