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

Contenu du cours

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.

Note

All values (inputs, weights, and outputs) are floating-point numbers, usually ranging from -1 to 1. If the original data isn't in this format, it needs to be preprocessed.

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?

What is an activation function?

What is an activation function?

Sélectionnez la réponse correcte

What the weights of the neuron shows?

What the weights of the neuron shows?

Sélectionnez la réponse correcte

What is the backpropagation algorithm?

What is the backpropagation algorithm?

Sélectionnez la réponse correcte

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

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