Skip to content

⏩ This repository contains; very simple implementation of single-layer perceptron structure in several programming languages (educational purposes)

License

Notifications You must be signed in to change notification settings

egesabanci/perceptrons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Perceptron Project

This repository contains, very simple single-layer perceptron implementation in several programming languages. 🦾

What is Perceptron?

In machine learning, the perceptron is an algorithm for supervised learning of binary classifiers. A binary classifier is a function which can decide whether or not an input, represented by a vector of numbers, belongs to some specific class. 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. Wikipedia Article about Perceptrons