Articles in this series
Ann (Artificial Neural Networks ): One of the simplest neural network. CNN (Convolutional neural network): This neural network is used for image...
Deep learning is a subfield of ai and ml which is inspired by the structure of a human brain. Deep Learning algorithms draw a similar conclusion as a...
Multi-layer Perceptron CNN RNN Auto Encoders GAN Applications of DL ? Self-driving car Game playing agents Virtual assistant Image...
It is an algorithm that is used for supervised ml problems. Note: Perceptron can only classify linear or sort of linear data. Code Example: import...
Perceptron trick code: from sklearn.datasets import make_classification import numpy as np X, y = make_classification(n_samples=100, n_features=2,...
Problem with the perceptron trick? Cannot quantify your result line. Sometimes it never converges Loss Functions? A function of f(w1,w2,b) gives...