Go to the source code of this file.
Typedefs | |
typedef layer | softmax_layer |
Functions | |
void | backward_softmax_layer (const softmax_layer l, network_state state) |
void | forward_softmax_layer (const softmax_layer l, network_state state) |
softmax_layer | make_softmax_layer (int batch, int inputs, int groups) |
void | softmax_array (float *input, int n, float temp, float *output) |
typedef layer softmax_layer |
Definition at line 6 of file softmax_layer.h.
void backward_softmax_layer | ( | const softmax_layer | l, |
network_state | state | ||
) |
Definition at line 63 of file softmax_layer.c.
void forward_softmax_layer | ( | const softmax_layer | l, |
network_state | state | ||
) |
Definition at line 49 of file softmax_layer.c.
softmax_layer make_softmax_layer | ( | int | batch, |
int | inputs, | ||
int | groups | ||
) |
Definition at line 10 of file softmax_layer.c.
void softmax_array | ( | float * | input, |
int | n, | ||
float | temp, | ||
float * | output | ||
) |