DEV Community

Khasky
Khasky

Posted on

How Biology Became the Foundation of Artificial Intelligence 🧠

Modern AI may look incredibly complex today.

We talk about transformers, attention mechanisms, large language models, embeddings, agents, and reasoning systems.

But at the foundation of neural networks is a much simpler idea: the artificial neuron.

The biological inspiration

A biological neuron receives signals through dendrites.

These signals are integrated in the cell body, also called the soma. If the combined signal is strong enough, the neuron generates an impulse and sends it forward through the axon.

In simple terms:

dendrites -> cell body -> impulse
Enter fullscreen mode Exit fullscreen mode

The neuron receives input, processes it, and then decides whether to pass a signal forward.

This biological process inspired one of the earliest building blocks of artificial intelligence.

The artificial neuron

An artificial neuron follows a similar logic, but mathematically.

Instead of biological signals, it receives numerical inputs.

Each input is multiplied by a weight. Then all weighted inputs are added together, adjusted by a bias, and passed through an activation function.

inputs -> weights -> weighted sum + bias -> activation function -> output
Enter fullscreen mode Exit fullscreen mode

Or, in a simplified formula:

z = w1*x1 + w2*x2 + ... + wn*xn + b
Enter fullscreen mode Exit fullscreen mode

Here:

  • x values are the inputs
  • w values are the weights
  • b is the bias
  • z is the weighted sum before activation

Why activation functions matter

Without an activation function, a neural network would mostly behave like a linear mathematical model.

Activation functions introduce non-linearity, allowing neural networks to learn more complex patterns.

One classic example is the sigmoid activation function:

sigma(z) = 1 / (1 + e^(-z))
Enter fullscreen mode Exit fullscreen mode

The sigmoid function always produces a value between 0 and 1.

That means the neuron does not simply output "yes" or "no".

Instead, it produces a smooth value that can often be interpreted as confidence or probability.

Before transformers, there was the perceptron

Before transformers, attention mechanisms, and large language models, there was a much smaller foundation: the perceptron.

A perceptron is one of the earliest models of an artificial neuron. It takes inputs, applies weights, adds bias, and produces an output through an activation function.

This simple structure became one of the building blocks for modern neural networks.

Why this still matters

Today's AI systems are much more advanced than a single perceptron.

But the core idea remains important:

small mathematical units process information, pass signals forward, and combine into larger systems capable of learning complex behavior.

Modern AI begins at the smallest level, with one artificial neuron.

And that idea began with biology.

Top comments (0)