The Sigmoid Function (the logistic function)

The sigmoid function is a continuous, monotonically increasing function with a characteristic 'S'-like curve, and possesses several interesting properties that make it an obvious choice as an activation function for nodes in artificial neural networks.
The domain of the sigmoid function is the set of all real numbers, R, and it's defined as:

Please note that equation (1) could just as well be written as σ(x)=exex+1 (this is seen by multiplying equation (1) by exex, i.e. multiplying by 1).
(1)σ(x)=11+e−x
The graph of the sigmoid function illustrates its smooth, gradual transition from values just above 0 to values just below 1 - a transition that almost fully occurs in the interval −5<x<5.
For arguments near 0 the sigmoid function approximates a linear function with slope 14.
The elongated 'S'-like curve of the sigmoid function Figure 1: The elongated 'S'-like curve of the sigmoid function

Decision Boundary:
Means the value at which we split our suggested labels to either 0s or 1s.

Comments

Popular posts from this blog

Maxpooling vs minpooling vs average pooling

Generative AI - Prompting with purpose: The RACE framework for data analysis

Best Practices for Storing and Loading JSON Objects from a Large SQL Server Table Using .NET Core