Deep Learning Algorithm Implementations 1.0.0
C++ implementations of fundamental deep learning algorithms
Loading...
Searching...
No Matches
functions.hpp File Reference

Activation functions for neural networks. More...

#include <cmath>
#include <vector>
#include "utils/matrix.hpp"
Include dependency graph for functions.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  dl::activation::ActivationFunction
 Abstract base class for activation functions. More...
 
class  dl::activation::ReLU
 Rectified Linear Unit (ReLU) activation function. More...
 
class  dl::activation::Sigmoid
 Sigmoid activation function. More...
 
class  dl::activation::Tanh
 Hyperbolic tangent (Tanh) activation function. More...
 
class  dl::activation::Softmax
 Softmax activation function. More...
 
class  dl::activation::LeakyReLU
 Leaky Rectified Linear Unit (Leaky ReLU) activation function. More...
 

Namespaces

namespace  dl
 
namespace  dl::activation
 

Detailed Description

Activation functions for neural networks.

Author
Kalenitid
Version
1.0.0

Definition in file functions.hpp.