In this video we’ll introduce the Single-Layer Perceptron (aka “Neuron“ or simply “Perceptron“), the most fundamental element of nearly all modern neural network and machine learning models. We’ll begin by covering the history and main idea, then open up a coding editor and actually implement the element from scratch.
Machine Learning textbook (mentioned in video):
Github repo:
If you’d like to learn about Python data structures, check out my video series starting with:
Video series covering GUI development in Python:
References:
[1] -
In machine learning, the perceptron is an algorithm for supervised learning of binary classifiers (functions that can decide whether an input, represented by a vector of numbers, belongs to some specific class or not). It is a type of linear classifier, i.e. a classification algorithm that makes its predictions based on a linear predictor function combining a set of weights with the feature vector. The algorithm allows for online learning, in that it processes elements in the training set one at a time.
1 view
7
1
6 months ago 02:25:52 5
The spelled-out intro to neural networks and backpropagation: building micrograd
9 months ago 04:52:51 1
Artificial Intelligence Full Course | Artificial Intelligence Tutorial for Beginners | Edureka
1 year ago 00:18:41 1
Single-Layer Perceptron: Background & Python Code
2 years ago 00:25:28 15
Dendrites: Why Biological Neurons Are Deep Neural Networks
2 years ago 00:33:18 2
Data Structures & Algorithms in Python | Data Structures in Python | Edureka | Python Rewind - 6
3 years ago 01:32:51 7
2021-12-13 Machine Learning Lecture 18 - Intro to Neural Networks
3 years ago 00:03:41 28
KiloNeRF: Speeding up Neural Radiance Fields with Thousands of Tiny MLPs
3 years ago 00:10:08 2
Deep Learning | Neural Networks
4 years ago 00:35:53 1
What is Artificial Neural Network | Neural Network Tutorial | Edureka | Deep Learning Rewind - 2
5 years ago 00:12:47 1
Neural Network Tutorial 3 - Implementing The Perceptron Algorithm In Python