惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
美团技术团队
量子位
M
MIT News - Artificial intelligence
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
小众软件
小众软件
博客园 - 司徒正美
罗磊的独立博客
云风的 BLOG
云风的 BLOG
B
Blog RSS Feed
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why Activation Functions Matter in Neural Networks
shangkyu shi · 2026-05-05 · via DEV Community

A neural network without activation functions is not really deep.

You can stack many layers, but without nonlinearity, the model still behaves like one big linear transformation.

That is why activation functions matter.

They are the reason neural networks can learn curves, boundaries, patterns, and complex relationships.

Core Idea

An activation function transforms the output of a neuron.

More importantly, it adds nonlinearity.

Without it, a network cannot represent complex patterns well.

With it, each layer can reshape the data step by step.

The Key Structure

A basic neuron looks like this:

Input → Weighted Sum → Activation Function → Output

In simple form:

z = wx + b

a = activation(z)

Where:

  • z = raw linear score
  • activation(z) = transformed output
  • a = value passed to the next layer

The important part is not just the formula.

The important part is the transformation.

Activation functions decide what kind of signal moves forward.

Implementation View

At a high level, a neural network layer works like this:

input comes in

calculate weighted sum:
    z = w * x + b

apply activation:
    a = activation(z)

pass a to the next layer

Enter fullscreen mode Exit fullscreen mode

If the activation is linear, stacking layers does not add much power.

If the activation is nonlinear, each layer can build a more useful representation.

That is the whole reason this topic matters in real models.

Concrete Example

Imagine a binary classifier.

The model receives features and needs to predict whether something belongs to class 0 or class 1.

A linear transformation gives a raw score.

But a raw score is not easy to interpret.

A Sigmoid activation maps it into a 0–1 range.

That makes it easier to read as a probability-like output.

For multiclass classification, Softmax plays a similar role.

It turns multiple raw scores into a probability distribution across classes.

Linear vs Nonlinear Activation

This is the key comparison.

Linear activation:

  • keeps the model mostly linear
  • cannot create complex decision boundaries
  • makes stacked layers collapse into another linear transformation

Nonlinear activation:

  • bends the representation
  • allows hidden layers to learn complex patterns
  • makes deep neural networks useful

This is why activation functions are not optional details.

They are part of the reason deep learning works.

Sigmoid vs ReLU

Two common activation functions show the difference clearly.

Sigmoid compresses values into the 0–1 range.

That makes it useful when you want probability-like outputs.

But Sigmoid can suffer from weak gradients when values become too large or too small.

ReLU is much simpler.

It outputs 0 for negative values and keeps positive values unchanged.

That simplicity makes ReLU widely used in hidden layers of deep neural networks.

In short:

  • Sigmoid is useful for probability-like outputs
  • ReLU is useful for hidden-layer feature learning

They are not just interchangeable functions.

They serve different roles.

Hidden Layers vs Output Layers

This distinction is important in implementation.

Hidden layers usually need activations that help representation learning.

Output layers need functions that match the task.

For example:

  • hidden layers → ReLU
  • binary classification output → Sigmoid
  • multiclass classification output → Softmax

This is why choosing an activation function is not just a math choice.

It is a design choice.

The activation should match the layer’s job.

How This Connects to Training

Activation functions also affect learning.

During backpropagation, gradients pass through the activation function.

So the activation function influences:

  • how signals move forward
  • how errors move backward
  • how easily weights are updated

This is why vanishing gradients became a real issue with some older activation choices.

It is also why ReLU became so common in practical deep learning.

A good activation function does not only produce useful outputs.

It also helps the model train.

Recommended Learning Order

If activation functions feel disconnected, learn them in this order:

  1. Activation Function
  2. Linear Activation Function
  3. Sigmoid
  4. ReLU
  5. Softmax
  6. Backpropagation
  7. Cross Entropy Loss

This order works because you first understand why nonlinearity matters.

Then you compare major functions.

Then you connect activation choices to training and loss functions.

Takeaway

Activation functions are not small details inside neural networks.

They are the mechanism that turns stacked linear operations into useful nonlinear models.

The simplest way to remember it:

Linear layers calculate.

Activation functions reshape.

Together, they allow neural networks to learn complex patterns.

Without activation functions, deep learning loses most of its power.

Discussion

When building neural networks, do you usually think about activation functions carefully, or do you mostly default to ReLU unless the output layer requires something else?

Originally published at zeromathai.com.
Original article: https://zeromathai.com/en/activation-function-hub-en/