Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn What is a Neuron? | Concept of Neural Network
Introduction to Neural Networks
course content

Course Content

Introduction to Neural Networks

Introduction to Neural Networks

1. Concept of Neural Network
2. Neural Network from Scratch
3. Conclusion

book
What is a Neuron?

Single Neuron

A neuron is the fundamental unit of a neural network, responsible for processing information. It receives input data (any data encoded as numerical values), processes it, and passes the result forward. Each input is assigned a weight, which determines its importance in the neuron's calculation.

The way each neuron works can be broken down in 4 steps:

  1. Receiving input: a neuron takes multiple inputs, represented as x1, x2, x3, etc;
  2. Applying weights: each input is multiplied by a corresponding weight w1, w2, w3, etc., which defines its significance. Initially, these weights are set randomly, but they are later adjusted during training using a method called backpropagation, which we will cover later;
  3. Summation: the weighted inputs are summed together (w1 * x1 + w2 * x2 + ...);
  4. Activation function: this sum is passed through an activation function, which transforms it into the neuron's output. The choice of activation function depends on the problem the neural network is solving.

Neuron as Part of a Neural Network

The neuron's output serves as input for the next layer of neurons. This process continues through multiple layers until the network produces a final result.

During the learning process, the weights of the neuron are adjusted in such a way as to minimize the error between the values predicted by the neural network and the real values. .

If the network makes a mistake, it updates the weights to improve future predictions.

By refining these connections over time, the neural network learns patterns in data and improves its accuracy in solving tasks.

1. What is an activation function?

2. What the weights of the neuron shows?

3. What is the backpropagation algorithm?

question mark

What is an activation function?

Select the correct answer

question mark

What the weights of the neuron shows?

Select the correct answer

question mark

What is the backpropagation algorithm?

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 5
We're sorry to hear that something went wrong. What happened?
some-alt