Skip to content

M-Adil-AS/Perceptron-Learning

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Perceptron-Learning

Binary Linear Classifier - AI Supervised Algorithm

Assign a weight to each input dimension. Go through the data points multiple times and adjust the weights value by considering the difference between actual value and estimate value (hypothesis function). We constantly try to figure out whether we need to shift a weight value in order to better create some weight vector that is more accurately able to try to estimate what the output should be.

Demo Link: https://m-adil-as.github.io/Perceptron-Learning/

Untitled design (35)

let slope = -wxwy let constant = -wowy

Untitled design (36)