![]() |
darknet
v3
|
#include "softmax_layer.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 | |
| softmax_layer | make_softmax_layer (int batch, int inputs, int groups) |
| void | forward_softmax_layer (const softmax_layer l, network net) |
| void | backward_softmax_layer (const softmax_layer l, network net) |
| void backward_softmax_layer | ( | const softmax_layer | l, |
| network | net | ||
| ) |
Definition at line 59 of file softmax_layer.c.
| void forward_softmax_layer | ( | const softmax_layer | l, |
| network | net | ||
| ) |
Definition at line 39 of file softmax_layer.c.
| softmax_layer make_softmax_layer | ( | int | batch, |
| int | inputs, | ||
| int | groups | ||
| ) |
Definition at line 11 of file softmax_layer.c.
1.8.13