keon / algorithms

Minimal examples of data structures and algorithms in Python
MIT License
23.75k stars 4.59k forks source link

Add machine learning algorithms(only one now) #494

Open chaogedebishi opened 5 years ago

chaogedebishi commented 5 years ago

As a beginner in machine learning, I wonder if some more algorithms can be added to machine learning. If possible, can there be some simulation for algorithms?

youdymoo commented 5 years ago

My friend and I are really interested in adding this feature. It’s weird that the nearest neighbor is the only method of machine learning so far.

We will start with some basic machine learning algorithms as perceptron and linear regression, and we will definitely add unit tests as well.

Any idea on other algorithms is welcome!!

keon commented 5 years ago

sure, why not!

CentralLT commented 3 years ago

Could use the category supervised and unsupervised ml algorithms to order ml algorithms. I guess decision tree and random forest are also some of the most used basic ml algorithms. Also worth including them.