It contains an Artificial Neural Net implemented from scratch in Python.
Association rule learning is a rule-based machine learning method for discovering interesting relations between variables in large databases.It is intended to identify strong rules discovered in databases using some measures of interestingness.The folder contains a .py file illustrating the algorithm.
Decision tree learning uses a decision tree (as a predictive model) to go from observations about an item (represented in the branches) to conclusions about the item's target value (represented in the leaves). It contains the following implementations 1.Rain Predictor Decision Tree 2.Basic Decision Tree 3.Decision Tree visualization of Iris dataset
KMeans is an unsupervised Machine Learning Algorithm, which is implemented from scratch here. Iris dataset is used for testing and training
K- Nearest Neighbor Classification Algorithm is widely used for classification problem. Here, the algorithm is implemented from scratch and tested first on a small example of 2 dimensional test data and then on iris dataset.
In Linear Regression, we try to establish relationship between 2 variables by fitting a line. The best fit line is known as regression line and it is represented by a linear equation Y = a*X +b This folder contains Linear Regression implemented from scratch in Python without using any Machine Learning libraries.
Logistic Regression is basically a classification algorithm which is used to estimate discrete values based on given data. The folder contains an ipython notebook depicting the implementation of logistic regression without any helper machine learning libraries.
Natural Language Processing broadly refers to the study and development of computer systems that can interpret speech and text as humans naturally speak and type it. The folder contains a basic implemetation of NLP to predict whether a costumer in a restaurant liked the food or not based on his reviews.
Naive Bayes is a popular classification algorithm which assumes that one variable is independent of the other. In this example, the ipython notebook implements an email spam classifier.
A recommender system or a recommendation system (sometimes replacing "system" with a synonym such as platform or engine) is a subclass of information filtering system that seeks to predict the "rating" or "preference" that a user would give to an item.Contains an .ipynb file explaining the algorithm.
This folder includes the following
An ipython notebook depicting basic implementation of SVM algorithm for learning basis. https://github.com/aribis369/ML-Starter-Pack/blob/master/SVM/SVM.ipynb
Optimized SVM using the SMO Algorithm https://github.com/aribis369/ML-Starter-Pack/blob/master/SVM/SVMl.ipynb
A pdf for explanation of SMO Algorithm https://github.com/aribis369/ML-Starter-Pack/blob/master/SVM/smo.pdf
The folder also contains .py files of the same and some datasets for illustrating the algorithms.
The folder contains .py file implenting the algorithms.
Anomaly detection is a technique used to identify unusual patterns that do not conform to expected behavior, called outliers. It is used to detect intrusions in system, fraud detection and so on. The folder contains a python file which implements an anomaly detector from scratch.
Collaborative Filtering Algorithm is used in Recommender System. In collaborative filtering, the recommender system recommends items based on how users with similar interests liked it. The python file gives a collaborative filtering algorithm for recommending items to different users based on ratings and trust of reviews.
PCA (Principal Component Analysis) algorithm is used for reducing dimensions. For example, If we want to reduce our data from 3D to 2D, we can use PCA algorithm. An ipython notebook as well as a python script is added in the folder which shows the implementation of this algorithm.
Recurrent Neural Networks allow information to persist, solving one major drawback of traditional neural nets. LSTMs are designed specially to avoid the long-term dependency problem. Remembering information for long periods of time is fortunately their default behavior, and not something they struggle to learn. A stock preditor using LSTM is implemented here.
Understanding and Implementation of Decision Tree from Scratch with different types of examples. Examples like Rain Predictor Decision Tree and Effective ways to visualize data . Go to the folder and Enjoy Learnig :
Ever wondered, “what algorithm Google uses to maximize its target ads revenue?”. What about the Giant e-commerce websites like Amazon which advocates you through options such as ‘people who bought this also bought this’? The answer is Recommendation Engines. Go to the folder and Explore them from Scratch :