Skip to content

Still in progress... I am learning basic machine learning algorithms. My everyday learning is updated here.

Notifications You must be signed in to change notification settings

UtkarshaVidhale/machine-learning-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

machine-learning-examples

Basic machine learning algorithms explained using python.

This repository contains examples of popular machine learning algorithms implemented in Python with mathematics behind them being explained.

Supervised Learning

In supervised learning we have a set of training data as an input and a set of labels or "correct answers" for each training set as an output. Then we're training our model (machine learning algorithm parameters) to map the input to the output correctly (to do correct prediction). The ultimate purpose is to find such model parameters that will successfully continue correct input→output mapping (predictions) even for new input examples.

Regression

In regression problems we do real value predictions. Basically we try to draw a line/plane/n-dimensional plane along the training examples.

Usage examples: stock price forecast, sales analysis, dependency of any number, etc.

  1. Non Linear Regression

  2. Simple Linear Regression

Unsupervised Learning

Unsupervised learning is a branch of machine learning that learns from test data that has not been labeled, classified or categorized. Instead of responding to feedback, unsupervised learning identifies commonalities in the data and reacts based on the presence or absence of such commonalities in each new piece of data.

About

Still in progress... I am learning basic machine learning algorithms. My everyday learning is updated here.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published