darknet  v3
Typedefs | Functions
softmax_layer.h File Reference
#include "layer.h"
#include "network.h"
Include dependency graph for softmax_layer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Typedefs

typedef layer softmax_layer
 

Functions

void softmax_array (float *input, int n, float temp, float *output)
 
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)
 

Typedef Documentation

◆ softmax_layer

Definition at line 6 of file softmax_layer.h.

Function Documentation

◆ backward_softmax_layer()

void backward_softmax_layer ( const softmax_layer  l,
network  net 
)

Definition at line 59 of file softmax_layer.c.

◆ forward_softmax_layer()

void forward_softmax_layer ( const softmax_layer  l,
network  net 
)

Definition at line 39 of file softmax_layer.c.

◆ make_softmax_layer()

softmax_layer make_softmax_layer ( int  batch,
int  inputs,
int  groups 
)

Definition at line 11 of file softmax_layer.c.

◆ softmax_array()

void softmax_array ( float *  input,
int  n,
float  temp,
float *  output 
)