Search

Search IconIcon to open search

Sigmoid

Last updatedUpdated: by Jakub Žovák · 1 min read

Properties
created 21.03.2026, 00:00
modified 26.07.2026, 13:35
published Empty
sources Empty
topics Activation Functions
authors Jakub
ai-assisted Yes

S-shaped activation that squashes any real value into the range \((0, 1)\).

$$ \sigma(x) = \frac{1}{1 + e^{-x}} $$
  • Output is a smooth probability-like score
  • Used in binary classification output layers
  • Gradient vanishes for very large or very small inputs (vanishing gradient problem)
  • Computationally more expensive than ReLU due to the exponential