Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 1.53 KB

README.md

File metadata and controls

41 lines (33 loc) · 1.53 KB

NEURAL NETWORK - PERCEPTRON

Made with: python with anaconda

Transfer (Activation) Functions

Unit step (threshold)

The output is set at one of two levels, depending on whether the total input is greater than or less than some threshold value.

Sigmoid

The sigmoid function consists of 2 functions, logistic and tangential. The values of logistic function range from 0 and 1 and -1 to +1 for tangential function.

Hyperbolic tangent - (TanH)

TanH (hyperbolic tangent) activation function and its derivative are defined by Eqs. (9.2) and (9.3), respectively TanH is a nonlinear activation function, with its center at 0 and its value ranging between –1 to 1 as shown in the graph in Fig. 9.4. It is mainly used in hidden layers, because its mean is 0 or near to it which helps in centering the data.[7] This eases the learning for the next layer.