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

https://github.com/hyouteki/malebolge

Machine Learning algorithms implementation from scratch in python using just numpy
https://github.com/hyouteki/malebolge

algorithm machine-learning

Last synced: 3 months ago
JSON representation

Machine Learning algorithms implementation from scratch in python using just numpy

Awesome Lists containing this project

README

        

Machine Learning algorithms implementation from scratch in python using just numpy.

## Unsupervised
- [Fuzzy c means](./fuzzy_cmeans.py)
- [K means](./kmeans.py)
- [Local Outlier Factor](./lof.py)
- [Mahalanobis](./mahalanobis.py)
- [Mean shift](./meanshift.py)

## Supervised
- [K Nearest Neighbours](./knn.py)
- [Logistic Regression](./log_reg.py)
- [Linear Regression](./lin_reg.py)

## Analysis
- [Fisher Discriminant Analysis](./fda.py)
- [Independent Component Analysis](./ica.py)
- [Linear Discrimiant Analysis](./lda.py)
- [Principle Component Analysis](./pca.py)
- [Silhouette Analysis](./silhouette.py)

## Helper classes
- [Cluster](./cluster.py)
- [Image Actor](./image_actor.py)
- [Point](./point.py)

## Quick Start
``` console
pip install -r requirements.txt
```