[go: up one dir, main page]

Skip to content

Implementation of an Adaptive Linear Neuron in python.

Notifications You must be signed in to change notification settings

Natsu6767/Adaline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Implementation of Adaline

This is an implentation of an ADAptive LInear NEuron (Adaline) in Python3. The code in this repository is based on the Adaline example given in the book: "Python Machine Learning by Sebastian Raschka".

AdalineGD

Batch gradient descent is used to optimise the model. In this method, the weights are updated only after passing the whole training data through the model.

AdalineSGD

Stochastic gradient descent is used to optimize the model. In this method the weights are updated after each training sample.

Result

Both the Adaline models were trained on the Iris dataset.

About

Implementation of an Adaptive Linear Neuron in python.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages