You are on page 1of 4

21AIE312: DEEP LEARNING FOR

SIGNAL & IMAGE PROCESSING

Sudharson S, Assistant Professor

1
REGRESSION IMPLEMENTATION
 Regression is defined as a statistical method that helps us to analyze and understand the relationship between two
or more variables of interest.
 The process that is adapted to perform regression analysis helps to understand which factors are important,
which factors can be ignored, and how they are influencing each other.

 In regression, we normally have one dependent variable and one or more independent variables.
 Here we try to “regress” the value of the dependent variable “Y” with the help of the independent variables.
 In other words, we are trying to understand, how the value of ‘Y’ changes w.r.t change in ‘X’.

 Linear regression- supervised Machine Learning algorithm that predicts continuous values

 Logistic regression- supervised Machine Learning algorithm that helps fundamentally in binary classification
(separating discreet values).
LINEAR REGRESSION IMPLEMENTATION

Use the salary dataset to solve linear regression problem. The dataset will have 2 columns namely – Years
of Experience and Salary.

1. Find out if there is any correlation between these two variables


2. Find the best fit line for the dataset.
3. Find the salary prediction for given years of experience
LOGISTIC REGRESSION IMPLEMENTATION

1. Implement a logistic regression model of your own choice. (you can take any dataset and show the
prediction analysis).

You might also like