AgainML

Machine Learning Algorithms implemented from scratch in Python


Keywords
deep-learning, kmeans-clustering, knn-classification, linear-regression, machine-learning, meanshift-clustering, neural-network, svm
License
MIT
Install
pip install AgainML==0.1.1

Documentation

Machine Learning And Deep Learning Algorithms from Scratch

In this repository, major machine learning and deep learning algorithms are implemented from scratch. From scratch meaning without using external machine learning libraries. All of the below mentioned algorithms are implemented in Python, Linear Regression is also implemented in C++. The API structure is similar to the Scikit-Learn library and Tensorflow Keras API.


Algorithms:

Supervised Learning:

  1. Linear Regression
  2. K-nearest Neighbours
  3. Support Vector Machine
  4. Artificial Neural Networks

Unsupervised Learning:

  1. K-Means Clustering
  2. Mean Shift Clustering

Deep Learning:

Neural Networks added with ReLU, Softmax Activations and Categorical Cross Entropy losses, and Optimizers such as SGD, Adam.

To use this implementation:

pip install open-nn-python