Newer
Older

Michal Kravcenko
committed
/**
* DESCRIPTION OF THE CLASS
*
* @author Martin Beseda
* @author Martin Mrovec
* @author Michal Kravčenko
* @date 2017 - 2018
*/
#ifndef INC_4NEURO_NEURONLOGISTIC_H
#define INC_4NEURO_NEURONLOGISTIC_H
kra568
committed
#include "../settings.h"
Martin Beseda
committed
#include "Neuron.h"
class NeuronLogistic:public Neuron, public IDifferentiable {

Michal Kravcenko
committed
Martin Beseda
committed
/**
* Struct used to access private properties from
* the serialization function
*/
struct access;

Michal Kravcenko
committed
/**
* Constructs the object of the Logistic neuron with activation function

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API explicit NeuronLogistic( );

Michal Kravcenko
committed
/**
* Evaluates '(1 + e^(-x + b))^(-1)' and stores the result into the 'state' property

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API virtual double activate( double x, double b ) override;

Michal Kravcenko
committed
/**
* Calculates the partial derivative of the activation function

Michal Kravcenko
committed
* @return Partial derivative of the activation function according to the

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API virtual double activation_function_eval_derivative_bias( double x, double b ) override;

Michal Kravcenko
committed
/**
* Calculates d/dx of (1 + e^(-x + b))^(-1)
* @return e^(b - x)/(e^(b - x) + 1)^2

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API virtual double activation_function_eval_derivative( double x, double b ) override;

Michal Kravcenko
committed
/**
* Returns a pointer to a Neuron with derivative as its activation function
* @return
*/
kra568
committed
LIB4NEURO_API virtual NeuronLogistic* get_derivative( ) override;

Michal Kravcenko
committed
};

Michal Kravcenko
committed
public:
Martin Beseda
committed
/**
* Struct used to access private properties from
* the serialization function
*/
struct access;

Michal Kravcenko
committed
/**
* Constructs the object of the Logistic neuron with activation function
* f(x) = e^(b - x)/(e^(b - x) + 1)^2
* @param[in] b Bias

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API explicit NeuronLogistic_d1( );

Michal Kravcenko
committed
/**
* Evaluates 'e^(b - x)/(e^(b - x) + 1)^2' and returns the result

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API virtual double activate( double x, double b ) override;

Michal Kravcenko
committed
/**
* Calculates the partial derivative of the activation function

Michal Kravcenko
committed
* @return Partial derivative of the activation function according to the
* bias, returns: (e^(b + x) (e^x - e^b))/(e^b + e^x)^3

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API virtual double activation_function_eval_derivative_bias( double x, double b ) override;

Michal Kravcenko
committed
/**
* Calculates d/dx of e^(b - x)*(1 + e^(b - x))^(-2)
* @return (e^(b + x) (e^b - e^x))/(e^b + e^x)^3

Michal Kravcenko
committed
*/
kra568
committed
LIB4NEURO_API virtual double activation_function_eval_derivative( double x, double b ) override;

Michal Kravcenko
committed
/**
* Returns a pointer to a Neuron with derivative as its activation function
* @return
*/
kra568
committed
LIB4NEURO_API virtual NeuronLogistic* get_derivative( ) override;

Michal Kravcenko
committed
};
class NeuronLogistic_d2:public NeuronLogistic_d1 {

Michal Kravcenko
committed
public:
Martin Beseda
committed
/**
* Struct used to access private properties from
* the serialization function
*/
struct access;
/**
* Constructs the object of the Logistic neuron with activation function
kra568
committed
LIB4NEURO_API explicit NeuronLogistic_d2( );
* Evaluates '(e^(b + x) (e^b - e^x))/(e^b + e^x)^3' and returns the result
kra568
committed
LIB4NEURO_API virtual double activate( double x, double b ) override;
/**
* Calculates the partial derivative of the activation function
* @return Partial derivative of the activation function according to the
* bias, returns: -(e^(b + x) (-4 e^(b + x) + e^(2 b) + e^(2 x)))/(e^b + e^x)^4
kra568
committed
LIB4NEURO_API virtual double activation_function_eval_derivative_bias( double x, double b ) override;
* Calculates d/dx of (e^(b + x) (e^b - e^x))/(e^b + e^x)^3
* @return (e^(b + x) (-4 e^(b + x) + e^(2 b) + e^(2 x)))/(e^b + e^x)^4
kra568
committed
LIB4NEURO_API virtual double activation_function_eval_derivative( double x, double b ) override;

Michal Kravcenko
committed
/**

Michal Kravcenko
committed
* @return
*/
kra568
committed
LIB4NEURO_API virtual NeuronLogistic* get_derivative( ) override;
#endif //INC_4NEURO_NEURONLOGISTIC_H