Learn practical skills, build real-world projects, and advance your career

Linear Regression - A Primer

import jovian
jovian.commit(filename= 'linear-regression-primer')
import matplotlib
import matplotlib.pyplot as plt
plt.rcParams['savefig.dpi'] = 300

import numpy as np
np.random.seed(42)
import sklearn
%matplotlib inline

import warnings
warnings.filterwarnings(action='once')

Machine Learning Refresher

  • What is Machine Learning

    "Machine Learning is the field of study that gives computers the ability to learn without being explicitly programmed"
    ~ Arthur Samuel

  • Types of Machine Learning

    • Supervised Learning
    • Unsupervised Learning
    • Semi-supervised Learning
    • Reinforcement Learning