Module 03 - Learners Guide
Module 03 - Learners Guide
Machine Learning
1
What is Machine Learning?
2
What is it used for?
3
High level process of Machine Learning
Test
Data
Model
Data Data Model Model
Training &
collection Cleaning Testing Deployment
Building
4
Types of Machine Learning
• Supervised Learning :
• Unsupervised Learning
• Reinforcement Learning
5
Supervised Learning
• Supervised Learning :
Supervised learning algorithms are trained using labeled examples, such as an
input where the desired output is known.
6
Unsupervised Learning
• In unsupervised learning, the algorithm learns from unlabeled data, meaning there
are no predefined labels for the input data.
• The goal is to explore the data and find some structure within the dataset
7
Reinforcement Learning
8
Regression
Simple Linear regression : is a type of supervised learning Multiple Linear regression : is a type of supervised
algorithm used for modeling the relationship between a learning algorithm used for modeling the relationship
dependent variable and independent variable. between a dependent variable and one or more
independent variable.
9
Simple Liner Regression
Let's say we have a dataset that represents the relationship between the number of hours students spend studying
(independent variable) and their exam scores (dependent variable). We want to build a linear regression model to
predict exam scores based on the number of hours studied.
Y=mx+b
b is the y-intercept (the point where the line crosses the y-axis)
10
Simple Liner Regression
Our goal is to find the values of m and b that best fit the data
Once we have these values, we can use the equation to predict exam scores for new values of X.
In this case, we can use a library like scikit-learn in Python to perform linear regression. Here's a simple Python code
snippet to do this:
90
85
80
70
60
2 4 6 7 8
11
Hands-on
session
12
THANK YOU
FIND OUT MORE
www.tataelxsi.com
Confidentiality Notice
This document and all information contained herein is the sole property of Tata Elxsi Ltd.
No intellectual property rights are granted by the delivery of this document or the disclosure of its content.
This document shall not be reproduced or disclosed to a third party without the express written consent of Tata Elxsi Ltd.
This document and its content shall not be used for any purpose other than that for which it is supplied.
13