An open API service indexing awesome lists of open source software.

https://github.com/crispengari/ml-algorithms

implementation of machine learning algorithms such as k-means, knn, svm from scratch.
https://github.com/crispengari/ml-algorithms

algorithms classification clustering knn machine-learning machine-learning-algorithms python regression svm

Last synced: about 2 months ago
JSON representation

implementation of machine learning algorithms such as k-means, knn, svm from scratch.

Awesome Lists containing this project

README

          

### ml-algorithms

Implementation of machine learning algorithms from scratch using python modules to solve the basic three machine learning problems:

1. Regression
2. Clustering
3. Classification

### Notebooks

1. [Linear Regression](https://github.com/CrispenGari/ml-algorithms/blob/main/01_linear_regression/01_Linear_Regression.ipynb)
2. [Logistic Regression](https://github.com/CrispenGari/ml-algorithms/blob/main/02_logistic_regression/01_Logistic_Regression.ipynb)
3. [K-Nearest Neighbor (KNN)](https://github.com/CrispenGari/ml-algorithms/blob/main/03_knn/01_KNN.ipynb)
4. [Support Vector Machines (SVM)](https://github.com/CrispenGari/ml-algorithms/blob/main/04_svm/01_SVM.ipynb)
5. [Random Forest](https://github.com/CrispenGari/ml-algorithms/blob/main/05_randomforest/01_Random_Forest.ipynb)
6. [Naive Bayes](https://github.com/CrispenGari/ml-algorithms/blob/main/06_naivebayes/01_Naive_Bayes.ipynb)
7. [KMeans]()
8. [Neural Network]()
9. [Decision Tree](https://github.com/CrispenGari/ml-algorithms/blob/main/09_decisiontree/01_Decision_Tree.ipynb)
10. [Peceptron](https://github.com/CrispenGari/ml-algorithms/blob/main/10_perceptron/01_Simple_Percpectron.ipynb)
11. [PCA]()
12. [AdaBoost]()