Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
SlideShare a Scribd company logo
Machine
Learning Basics
An Introduction
Surviving the Titanic
Suppose, you have to build a model
to predict how many people survived
the Titanic shipwreck
Surviving the Titanic
Suppose, you have to build a model
to predict how many people survived
the Titanic shipwreck
Surviving the Titanic
• ID
• Survived
• Class
• Name
• Sex
• Age
• Siblings
• Parents/children abroad
• Ticket
• Fare
• Cabin
• Place of Embarkment
Teaching the model with the
passenger dataset
Dropping the non-essential
components of the dataset
Determining the survival of
passengers and evaluating the
model
Agenda
What is Supervised Learning?
What is Classification? What are some of its solutions?
What is Logistic Regression?
Comparing Linear and Logistic Regression
Logistic Regression applications
Use Case – Predicting the number in an image
What is Supervised Learning?
What is Supervised Learning?
That’s an
apple!
apple
Teacher teaches child Child recognizes an apple when she sees it again
A model is able to make predictions based on past data
Where does Logistic Regression fit it?
Machine Learning
Supervised Learning Unsupervised Learning
AssociationClusteringClassification Regression
The systems predicts future outcomes based on training from past input
Solutions to Classification
A few Classification Solutions
A B
We take decisions using a tree structure. Each
branch node represents a choice, and leaf node
represents a decision
Decision Trees
A few Classification Solutions
A B
Decision Trees
We take decisions using a tree structure. Each
branch node represents a choice, and leaf node
represents a decision
It helps determine what the given object is, based on
its similarity to the objects it is compared toK=3
K=7
K-Nearest Neighbor
It helps determine what the given object is, based on
its similarity to the objects it is compared toK=3
K=7
K-Nearest Neighbor
Decision Trees
A few Classification Solutions
A B
We determine the probability of an event occurring
with the help of a tree structure
A dataset with one or more independent variables is
used to determine binary output of the dependent
variable
Logistic Regression
What is Logistic Regression?
What is Logistic Regression?
Imagine it’s been a few years since
you serviced your car.
One day you wonder…
What is Logistic Regression?
It is a classification algorithm, used to predict binary outcomes for a given set of independent
variables. The dependent variable’s outcome is discrete.
Regression model created based on other
users’ experience
0.60
0.20
0.40
0.80
1.00
1 2 3 4 5 6
Years since service
Probabilityofbreakdown
How long until the
car breaks down?
You provide years since
last service
What is Logistic Regression?
Probability>0.50
Value rounded off to
1 : The car will
breakdown
Probability<0.50
Value rounded off to 0:
The car will not
breakdown
Here, the threshold
value 0.50 indicates
that the car is more
likely to breakdown
after 3.5 years of
usage
Model makes predictions
0.60
0.20
0.40
0.80
1.00
1 2 3 4 5 6
Years since last service
Probabilityofbreakdown
0.50
0.29
0.90
Threshold Value
What is Linear Regression?
Linear Regression
It is a statistical method that helps find the relationship between an independent and dependent variable,
both of which are continuous
He performed
well in the last
quarter. How
much raise
should he get?
Linear Regression
41 2 3 5
5
10
15
20
25
Employee rating
Salaryhike
Collection of ratings and corresponding
hikes Linear Regression is performed on data
The management provides the
corresponding salary hike
Employee rating
Linear and Logistic Regression
Here’s the graph of how linear
regression would be, for a given
scenario
x
y
Linear and Logistic Regression
What if you wanted to know whether the
employee would get a promotion or not
based on their rating
41 2 3 5
0 =No
1=Yes
Employee rating
Probabilityofgettinga
promotion
Linear and Logistic Regression
This graph would not be able to
make such a prediction. So we clip
the line at 0 and 1.
41 2 3 5
Employee rating
0 =No
1=Yes
Probabilityofgettinga
promotion
Linear and Logistic Regression
So, how did this… …become this?
41 2 3 5
Employee rating
41 2 3 5
Employee rating
0 =No
1=Yes
Probabilityofgettinga
promotion
0 =No
1=Yes
Probabilityofgettinga
promotion
The Math behind Logistic Regression
To understand Logistic Regression, let’s talk
about the odds of success
Odds (𝜃) =
Probability of an
event happening
Probability of an
event not
happening
or 𝜃 =
𝑝
1 − 𝑝
The values of odds range from 0 to ∞
The values of probability change from 0 to 1
The Math behind Logistic Regression
Type equation here.
Take the equation of the straight line
𝛽0
x
y
Here, 𝛽0 is the y-intercept
𝛽1 is the slope of the line
x is the value of the x co-ordinate
y is the value of the prediction
The equation would be: 𝑦 = 𝛽0 + 𝛽1 𝑥
The Math behind Logistic Regression
Type equation here.
Now, we predict the odds of success
e𝑙𝑛
𝑝 𝑥
1 − 𝑝 𝑥
= e 𝛽0+𝛽1 𝑥
log
𝑝 𝑥
1−𝑃 𝑥
= 𝛽0 + 𝛽1 𝑥
Exponentiating both sides:
𝑝 𝑥
1 − 𝑝 𝑥
= e 𝛽0+𝛽1 𝑥
Let Y = e 𝛽0+𝛽1 𝑥
Then
𝑝 𝑥
1−𝑝 𝑥
= Y
𝑝 𝑥 = 𝑌 1 − 𝑝 𝑥
𝑝 𝑥 = 𝑌 − 𝑌 𝑝 𝑥
𝑝 𝑥 + 𝑌 𝑝 𝑥 = 𝑌
𝑝 𝑥 1 + 𝑌 = 𝑌
𝑝 𝑥 =
𝑌
1 + 𝑌
𝑝 𝑥 =
e 𝛽0+𝛽1 𝑥
1 + e 𝛽0+𝛽1 𝑥
The equation of a sigmoid function:
𝑝 𝑥 =
e 𝛽0+𝛽1 𝑥
1 + e 𝛽0+𝛽1 𝑥
𝑝 𝑥 =
1
1 + e−(𝛽0+𝛽1 𝑥)
The Math behind Logistic Regression
Type equation here.
Now, we predict the odds of success
e𝑙𝑛
𝑝 𝑥
1 − 𝑝 𝑥
= e 𝛽0+𝛽1 𝑥
log
𝑝 𝑥
1−𝑃 𝑥
= 𝛽0 + 𝛽1 𝑥
Exponentiating both sides:
𝑝 𝑥
1 − 𝑝 𝑥
= e 𝛽0+𝛽1 𝑥
Let Y = e 𝛽0+𝛽1 𝑥
Then
𝑝 𝑥
1−𝑝 𝑥
= Y
𝑝 𝑥 = 𝑌 1 − 𝑝 𝑥
𝑝 𝑥 = 𝑌 − 𝑌 𝑝 𝑥
𝑝 𝑥 + 𝑌 𝑝 𝑥 = 𝑌
𝑝 𝑥 1 + 𝑌 = 𝑌
𝑝 𝑥 =
𝑌
1 + 𝑌
𝑝 𝑥 =
e 𝛽0+𝛽1 𝑥
1 + e 𝛽0+𝛽1 𝑥
The equation of a sigmoid function:
𝑝 𝑥 =
e 𝛽0+𝛽1 𝑥
1 + e 𝛽0+𝛽1 𝑥
𝑝 𝑥 =
1
1 + e−(𝛽0+𝛽1 𝑥)
41 2 3 5
0
0.25
0.50
0.75
1
Employee rating
Probabilityofgettinga
promotion
A sigmoid curve is obtained!
Comparing Linear and Logistic
Regression
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Regression
Problems
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• Used to solve Regression
Problems
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• Used to solve Regression
Problems
• The response variables are
continuous in nature
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• The response variable is
categorical in nature
• Used to solve Regression
Problems
• The response variables are
continuous in nature
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• The response variable is
categorical in nature
• Used to solve Regression
Problems
• The response variables are
continuous in nature
• It helps estimate the dependent
variable when there is a change
in the independent variable.
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• The response variable is
categorical in nature
• It helps calculate the possibility
of a particular event taking
place.
• Used to solve Regression
Problems
• The response variables are
continuous in nature
• It helps estimate the dependent
variable when there is a change
in the independent variable.
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• The response variable is
categorical in nature
• It helps calculate the possibility
of a particular event taking
place.
• Used to solve Regression
Problems
• The response variables are
continuous in nature
• It helps estimate the dependent
variable when there is a change
in the independent variable.
• Is a straight line.
How is Linear and Logistic Regression different?
Linear Regression Logistic Regression
• Used to solve Classification
Problems
• The response variable is
categorical in nature
• It helps calculate the possibility
of a particular event taking
place.
• An S-curve. (S = Sigmoid)
• Used to solve Regression
Problems
• The response variables are
continuous in nature
• It helps estimate the dependent
variable when there is a change
in the independent variable.
• Is a straight line.
Logistic Regression Applications
Weather Prediction
Helps determine the kind of weather that
can be expected
Identifies the different components
that are present in the image, and
helps categorize them
Logistic Regression Applications
Humans Animals Vehicles
Image Categorization
Determines the possibility of patient
survival, taking age, ISS and RTS into
consideration
Logistic Regression Applications
Healthcare (TRISS)
Patient survival %
Revised
Trauma Score
Injury Severity
Score
Age
Use Case – Predicting numbers in
images
Use Case – Predicting numbers
Can you guess
what number I am? Are you a 3? 4?
I don’t know!
8x8 image
Use Case – Predicting numbers
Dividing the data set
Training
set
Test set
The model being trained
Model identifies number in
images
Test set applied
A number 4
A number 1
Use Case – Implementation
Importing libraries and their associated methods
Determining the total number of images and labels
Use Case – Implementation
Displaying some of the images and labels
Use Case – Implementation
Dividing dataset into Training and Test set
Use Case – Implementation
Import the Logistic Regression model
Making an instance of the model and training it
Predicting the output of the first element of the test set
Predicting the output of the first 10 elements of the test set
Use Case – Implementation
Predicting for the entire dataset
Determining the accuracy of the model
Representing the confusion matrix in a heat map
Use Case – Implementation
Accurately predicting the image to
contain a zero
Inaccurately predicting the image to
contain a seven
Use Case – Implementation
Presenting predictions and actual output
Use Case – Predicting numbers
Dividing the data set
Training
set
Test
set
The model being trained Model identifies number in
images
Test set applied
A number 4
A number 2
Here’s What You’ve Learnt so Far
So what’s
your next step?

More Related Content

What's hot

Support Vector Machines for Classification
Support Vector Machines for ClassificationSupport Vector Machines for Classification
Support Vector Machines for Classification
Prakash Pimpale
 
Support Vector Machines
Support Vector MachinesSupport Vector Machines
Support Vector Machines
nextlib
 
Support Vector machine
Support Vector machineSupport Vector machine
Support Vector machine
Anandha L Ranganathan
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
Md. Main Uddin Rony
 
Linear Regression Analysis | Linear Regression in Python | Machine Learning A...
Linear Regression Analysis | Linear Regression in Python | Machine Learning A...Linear Regression Analysis | Linear Regression in Python | Machine Learning A...
Linear Regression Analysis | Linear Regression in Python | Machine Learning A...
Simplilearn
 
Machine Learning - Simple Linear Regression
Machine Learning - Simple Linear RegressionMachine Learning - Simple Linear Regression
Machine Learning - Simple Linear Regression
Siddharth Shrivastava
 
Logistic regression in Machine Learning
Logistic regression in Machine LearningLogistic regression in Machine Learning
Logistic regression in Machine Learning
Kuppusamy P
 
Introduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-LearnIntroduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-Learn
Benjamin Bengfort
 
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Simplilearn
 
Logistic regression : Use Case | Background | Advantages | Disadvantages
Logistic regression : Use Case | Background | Advantages | DisadvantagesLogistic regression : Use Case | Background | Advantages | Disadvantages
Logistic regression : Use Case | Background | Advantages | Disadvantages
Rajat Sharma
 
Machine Learning: Introduction to Neural Networks
Machine Learning: Introduction to Neural NetworksMachine Learning: Introduction to Neural Networks
Machine Learning: Introduction to Neural Networks
Francesco Collova'
 
Presentation on K-Means Clustering
Presentation on K-Means ClusteringPresentation on K-Means Clustering
Presentation on K-Means Clustering
Pabna University of Science & Technology
 
PCA (Principal component analysis)
PCA (Principal component analysis)PCA (Principal component analysis)
PCA (Principal component analysis)
Learnbay Datascience
 
Performance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning AlgorithmsPerformance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning Algorithms
Kush Kulshrestha
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
Md. Ariful Hoque
 
K-Nearest Neighbor Classifier
K-Nearest Neighbor ClassifierK-Nearest Neighbor Classifier
K-Nearest Neighbor Classifier
Neha Kulkarni
 
K-Folds Cross Validation Method
K-Folds Cross Validation MethodK-Folds Cross Validation Method
K-Folds Cross Validation Method
SHUBHAM GUPTA
 
Ensemble learning
Ensemble learningEnsemble learning
Ensemble learning
Haris Jamil
 
Machine learning Algorithm
Machine learning AlgorithmMachine learning Algorithm
Machine learning Algorithm
Md. Farhan Nasir
 
Logistic regression
Logistic regressionLogistic regression
Logistic regression
YashwantGahlot1
 

What's hot (20)

Support Vector Machines for Classification
Support Vector Machines for ClassificationSupport Vector Machines for Classification
Support Vector Machines for Classification
 
Support Vector Machines
Support Vector MachinesSupport Vector Machines
Support Vector Machines
 
Support Vector machine
Support Vector machineSupport Vector machine
Support Vector machine
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
 
Linear Regression Analysis | Linear Regression in Python | Machine Learning A...
Linear Regression Analysis | Linear Regression in Python | Machine Learning A...Linear Regression Analysis | Linear Regression in Python | Machine Learning A...
Linear Regression Analysis | Linear Regression in Python | Machine Learning A...
 
Machine Learning - Simple Linear Regression
Machine Learning - Simple Linear RegressionMachine Learning - Simple Linear Regression
Machine Learning - Simple Linear Regression
 
Logistic regression in Machine Learning
Logistic regression in Machine LearningLogistic regression in Machine Learning
Logistic regression in Machine Learning
 
Introduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-LearnIntroduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-Learn
 
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
Support Vector Machine - How Support Vector Machine works | SVM in Machine Le...
 
Logistic regression : Use Case | Background | Advantages | Disadvantages
Logistic regression : Use Case | Background | Advantages | DisadvantagesLogistic regression : Use Case | Background | Advantages | Disadvantages
Logistic regression : Use Case | Background | Advantages | Disadvantages
 
Machine Learning: Introduction to Neural Networks
Machine Learning: Introduction to Neural NetworksMachine Learning: Introduction to Neural Networks
Machine Learning: Introduction to Neural Networks
 
Presentation on K-Means Clustering
Presentation on K-Means ClusteringPresentation on K-Means Clustering
Presentation on K-Means Clustering
 
PCA (Principal component analysis)
PCA (Principal component analysis)PCA (Principal component analysis)
PCA (Principal component analysis)
 
Performance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning AlgorithmsPerformance Metrics for Machine Learning Algorithms
Performance Metrics for Machine Learning Algorithms
 
Decision Tree Learning
Decision Tree LearningDecision Tree Learning
Decision Tree Learning
 
K-Nearest Neighbor Classifier
K-Nearest Neighbor ClassifierK-Nearest Neighbor Classifier
K-Nearest Neighbor Classifier
 
K-Folds Cross Validation Method
K-Folds Cross Validation MethodK-Folds Cross Validation Method
K-Folds Cross Validation Method
 
Ensemble learning
Ensemble learningEnsemble learning
Ensemble learning
 
Machine learning Algorithm
Machine learning AlgorithmMachine learning Algorithm
Machine learning Algorithm
 
Logistic regression
Logistic regressionLogistic regression
Logistic regression
 

Similar to Logistic Regression | Logistic Regression In Python | Machine Learning Algorithms | Simplilearn

Lecture 3.1_ Logistic Regression.pptx
Lecture 3.1_ Logistic Regression.pptxLecture 3.1_ Logistic Regression.pptx
Lecture 3.1_ Logistic Regression.pptx
ajondaree
 
Logistical Regression.pptx
Logistical Regression.pptxLogistical Regression.pptx
Logistical Regression.pptx
Ramakrishna Reddy Bijjam
 
Logistic regression vs. logistic classifier. History of the confusion and the...
Logistic regression vs. logistic classifier. History of the confusion and the...Logistic regression vs. logistic classifier. History of the confusion and the...
Logistic regression vs. logistic classifier. History of the confusion and the...
Adrian Olszewski
 
3ml.pdf
3ml.pdf3ml.pdf
3ml.pdf
MianAdnan27
 
7. logistics regression using spss
7. logistics regression using spss7. logistics regression using spss
7. logistics regression using spss
Dr Nisha Arora
 
Machine_Learning.pptx
Machine_Learning.pptxMachine_Learning.pptx
Machine_Learning.pptx
VickyKumar131533
 
Machine Learning Interview Question and Answer
Machine Learning Interview Question and AnswerMachine Learning Interview Question and Answer
Machine Learning Interview Question and Answer
Learnbay Datascience
 
Machine Learning (Classification Models)
Machine Learning (Classification Models)Machine Learning (Classification Models)
Machine Learning (Classification Models)
Makerere Unversity School of Public Health, Victoria University
 
Regression Analysis - Thiyagu
Regression Analysis - ThiyaguRegression Analysis - Thiyagu
Regression Analysis - Thiyagu
Thiyagu K
 
Mini datathon
Mini datathonMini datathon
Mini datathon
Kunal Jain
 
Lecture 4
Lecture 4Lecture 4
Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...
Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...
Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...
Maninda Edirisooriya
 
Module 3: Linear Regression
Module 3:  Linear RegressionModule 3:  Linear Regression
Module 3: Linear Regression
Sara Hooker
 
Supervised Learning.pdf
Supervised Learning.pdfSupervised Learning.pdf
Supervised Learning.pdf
gadissaassefa
 
Corrleation and regression
Corrleation and regressionCorrleation and regression
Corrleation and regression
Pakistan Gum Industries Pvt. Ltd
 
2- Introduction to Modeling.pdf
2- Introduction to Modeling.pdf2- Introduction to Modeling.pdf
2- Introduction to Modeling.pdf
MUHAMMADSAEED509568
 
Introduction to correlation and regression analysis
Introduction to correlation and regression analysisIntroduction to correlation and regression analysis
Introduction to correlation and regression analysis
Farzad Javidanrad
 
Genetic Algorithm
Genetic AlgorithmGenetic Algorithm
Genetic Algorithm
SHIMI S L
 
Business Quantitative - Lecture 2
Business Quantitative - Lecture 2Business Quantitative - Lecture 2
Business Quantitative - Lecture 2
saark
 
Transformers.pdf
Transformers.pdfTransformers.pdf
Transformers.pdf
Ali Zoljodi
 

Similar to Logistic Regression | Logistic Regression In Python | Machine Learning Algorithms | Simplilearn (20)

Lecture 3.1_ Logistic Regression.pptx
Lecture 3.1_ Logistic Regression.pptxLecture 3.1_ Logistic Regression.pptx
Lecture 3.1_ Logistic Regression.pptx
 
Logistical Regression.pptx
Logistical Regression.pptxLogistical Regression.pptx
Logistical Regression.pptx
 
Logistic regression vs. logistic classifier. History of the confusion and the...
Logistic regression vs. logistic classifier. History of the confusion and the...Logistic regression vs. logistic classifier. History of the confusion and the...
Logistic regression vs. logistic classifier. History of the confusion and the...
 
3ml.pdf
3ml.pdf3ml.pdf
3ml.pdf
 
7. logistics regression using spss
7. logistics regression using spss7. logistics regression using spss
7. logistics regression using spss
 
Machine_Learning.pptx
Machine_Learning.pptxMachine_Learning.pptx
Machine_Learning.pptx
 
Machine Learning Interview Question and Answer
Machine Learning Interview Question and AnswerMachine Learning Interview Question and Answer
Machine Learning Interview Question and Answer
 
Machine Learning (Classification Models)
Machine Learning (Classification Models)Machine Learning (Classification Models)
Machine Learning (Classification Models)
 
Regression Analysis - Thiyagu
Regression Analysis - ThiyaguRegression Analysis - Thiyagu
Regression Analysis - Thiyagu
 
Mini datathon
Mini datathonMini datathon
Mini datathon
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...
Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...
Lecture 4 - Linear Regression, a lecture in subject module Statistical & Mach...
 
Module 3: Linear Regression
Module 3:  Linear RegressionModule 3:  Linear Regression
Module 3: Linear Regression
 
Supervised Learning.pdf
Supervised Learning.pdfSupervised Learning.pdf
Supervised Learning.pdf
 
Corrleation and regression
Corrleation and regressionCorrleation and regression
Corrleation and regression
 
2- Introduction to Modeling.pdf
2- Introduction to Modeling.pdf2- Introduction to Modeling.pdf
2- Introduction to Modeling.pdf
 
Introduction to correlation and regression analysis
Introduction to correlation and regression analysisIntroduction to correlation and regression analysis
Introduction to correlation and regression analysis
 
Genetic Algorithm
Genetic AlgorithmGenetic Algorithm
Genetic Algorithm
 
Business Quantitative - Lecture 2
Business Quantitative - Lecture 2Business Quantitative - Lecture 2
Business Quantitative - Lecture 2
 
Transformers.pdf
Transformers.pdfTransformers.pdf
Transformers.pdf
 

More from Simplilearn

Block Cipher Modes Of Operation | Computer Networking and Security | Simplilearn
Block Cipher Modes Of Operation | Computer Networking and Security | SimplilearnBlock Cipher Modes Of Operation | Computer Networking and Security | Simplilearn
Block Cipher Modes Of Operation | Computer Networking and Security | Simplilearn
Simplilearn
 
What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...
What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...
What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...
Simplilearn
 
How Much Do Ethical Hackers Make | Ethical Hacking Career|Simplilearn
How Much Do Ethical Hackers Make | Ethical Hacking Career|SimplilearnHow Much Do Ethical Hackers Make | Ethical Hacking Career|Simplilearn
How Much Do Ethical Hackers Make | Ethical Hacking Career|Simplilearn
Simplilearn
 
Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...
Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...
Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...
Simplilearn
 
How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...
How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...
How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...
Simplilearn
 
What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...
What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...
What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...
Simplilearn
 
Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...
Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...
Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...
Simplilearn
 
The WORST Beginner Cyber Security Mistakes Everyone Makes.pptx
The WORST Beginner Cyber Security Mistakes Everyone Makes.pptxThe WORST Beginner Cyber Security Mistakes Everyone Makes.pptx
The WORST Beginner Cyber Security Mistakes Everyone Makes.pptx
Simplilearn
 
Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...
Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...
Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...
Simplilearn
 
Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...
Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...
Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...
Simplilearn
 
7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...
7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...
7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...
Simplilearn
 
How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...
How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...
How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...
Simplilearn
 
How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...
How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...
How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...
Simplilearn
 
Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...
Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...
Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...
Simplilearn
 
Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...
Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...
Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...
Simplilearn
 
Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...
Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...
Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...
Simplilearn
 
Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...
Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...
Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...
Simplilearn
 
ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...
ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...
ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...
Simplilearn
 
Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...
Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...
Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...
Simplilearn
 
Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...
Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...
Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...
Simplilearn
 

More from Simplilearn (20)

Block Cipher Modes Of Operation | Computer Networking and Security | Simplilearn
Block Cipher Modes Of Operation | Computer Networking and Security | SimplilearnBlock Cipher Modes Of Operation | Computer Networking and Security | Simplilearn
Block Cipher Modes Of Operation | Computer Networking and Security | Simplilearn
 
What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...
What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...
What Is Default Gateway? | Default Gateway Explained In 9 Minutes | #Cybersec...
 
How Much Do Ethical Hackers Make | Ethical Hacking Career|Simplilearn
How Much Do Ethical Hackers Make | Ethical Hacking Career|SimplilearnHow Much Do Ethical Hackers Make | Ethical Hacking Career|Simplilearn
How Much Do Ethical Hackers Make | Ethical Hacking Career|Simplilearn
 
Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...
Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...
Is DevOps The Right Career Option To Choose In 2024? | Career Growth In DevOp...
 
How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...
How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...
How To Pass PMP Exam | Everything About PMP Exam | PMP Certification | Simpli...
 
What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...
What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...
What Is Cloud Security? | Cloud Security Fundamentals | Cloud Computing Tutor...
 
Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...
Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...
Java Spring Boot Roadmap | How To Master Spring Boot In 2024 | Spring Boot 20...
 
The WORST Beginner Cyber Security Mistakes Everyone Makes.pptx
The WORST Beginner Cyber Security Mistakes Everyone Makes.pptxThe WORST Beginner Cyber Security Mistakes Everyone Makes.pptx
The WORST Beginner Cyber Security Mistakes Everyone Makes.pptx
 
Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...
Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...
Machine Learning Interview Questions 2024 | ML Interview Questions And Answer...
 
Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...
Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...
Scrum Explained Under 20 Mins | What Is Scrum? | Scrum Master Training Tutori...
 
7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...
7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...
7 Best Data Science Jobs 2024 | Data Science Jobs and Salary | Data Science C...
 
How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...
How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...
How To Start Dropshipping In 2024 | What Is Dropshipping | Dropshipping For B...
 
How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...
How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...
How To Write An SEO Optimized Blog Post ? | SEO Optimized Blog Post | Simplil...
 
Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...
Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...
Which Cybersecurity Specialization Is Best In 2024? | Cybersecurity Careers 2...
 
Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...
Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...
Azure Roadmap 2024 | Azure Learning Path 2024 | Azure Career Guide 2024 | Sim...
 
Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...
Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...
Cybersecurity Roadmap 2024 | Cyber Security Career Roadmap For 2024 | Simplil...
 
Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...
Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...
Top 10 Business Analysis Tools | Business Analysis Tools And Techniques | Sim...
 
ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...
ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...
ITIL Roadmap 2023 | How To Get Certified In ITIL | ITIL V4 Foundation Trainin...
 
Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...
Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...
Top 5 Ethical Hacking Courses In India | 5 Best Ethical Hacking Courses in In...
 
Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...
Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...
Top 10 DevOps Jobs 2024 | 10 Highest Paying DevOps Jobs 2024 | DevOps Career ...
 

Recently uploaded

Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024
APEC Melmaruvathur
 
PPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geographyPPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geography
np2fjc9csm
 
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
OliverVillanueva13
 
Personality Development , Dr. SAROJ KUMAR DATTA
Personality Development , Dr. SAROJ KUMAR DATTAPersonality Development , Dr. SAROJ KUMAR DATTA
Personality Development , Dr. SAROJ KUMAR DATTA
CallplanetsDeveloper
 
SD_Instructional-Design-Frameworkzz.pptx
SD_Instructional-Design-Frameworkzz.pptxSD_Instructional-Design-Frameworkzz.pptx
SD_Instructional-Design-Frameworkzz.pptx
MarkKennethBellen1
 
How to Use Quality Module in Odoo 17 - Odoo 17 Slides
How to Use Quality Module in Odoo 17 - Odoo 17 SlidesHow to Use Quality Module in Odoo 17 - Odoo 17 Slides
How to Use Quality Module in Odoo 17 - Odoo 17 Slides
Celine George
 
How to Restrict Price Modification to Managers in Odoo 17 POS
How to Restrict Price Modification to Managers in Odoo 17 POSHow to Restrict Price Modification to Managers in Odoo 17 POS
How to Restrict Price Modification to Managers in Odoo 17 POS
Celine George
 
Bagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptxBagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptx
fantasialomibao
 
sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...
sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...
sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...
ABELARDOBALDOVEAZUEL
 
How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17
Celine George
 
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 SlidesHow to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
Celine George
 
ACTION PLAN ON NUTRITION MONTH 2024.docx
ACTION PLAN ON NUTRITION MONTH 2024.docxACTION PLAN ON NUTRITION MONTH 2024.docx
ACTION PLAN ON NUTRITION MONTH 2024.docx
LeviMaePacatang1
 
Understanding Clergy Payroll : QuickBooks
Understanding Clergy Payroll : QuickBooksUnderstanding Clergy Payroll : QuickBooks
Understanding Clergy Payroll : QuickBooks
TechSoup
 
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 SlidesHow to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
Celine George
 
What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17
Celine George
 
Odoo 17 Project Module : New Features - Odoo 17 Slides
Odoo 17 Project Module : New Features - Odoo 17 SlidesOdoo 17 Project Module : New Features - Odoo 17 Slides
Odoo 17 Project Module : New Features - Odoo 17 Slides
Celine George
 
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry  by V.Jesinthal MaryPlato and Aristotle's Views on Poetry  by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
jessintv
 
Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...
Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...
Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...
OH TEIK BIN
 
How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17
Celine George
 
How to Configure Extra Steps During Checkout in Odoo 17 Website App
How to Configure Extra Steps During Checkout in Odoo 17 Website AppHow to Configure Extra Steps During Checkout in Odoo 17 Website App
How to Configure Extra Steps During Checkout in Odoo 17 Website App
Celine George
 

Recently uploaded (20)

Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024Celebrating 25th Year SATURDAY, 27th JULY, 2024
Celebrating 25th Year SATURDAY, 27th JULY, 2024
 
PPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geographyPPT Jessica powerpoint physical geography
PPT Jessica powerpoint physical geography
 
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
21stcenturyskillsframeworkfinalpresentation2-240509214747-71edb7ee.pptx
 
Personality Development , Dr. SAROJ KUMAR DATTA
Personality Development , Dr. SAROJ KUMAR DATTAPersonality Development , Dr. SAROJ KUMAR DATTA
Personality Development , Dr. SAROJ KUMAR DATTA
 
SD_Instructional-Design-Frameworkzz.pptx
SD_Instructional-Design-Frameworkzz.pptxSD_Instructional-Design-Frameworkzz.pptx
SD_Instructional-Design-Frameworkzz.pptx
 
How to Use Quality Module in Odoo 17 - Odoo 17 Slides
How to Use Quality Module in Odoo 17 - Odoo 17 SlidesHow to Use Quality Module in Odoo 17 - Odoo 17 Slides
How to Use Quality Module in Odoo 17 - Odoo 17 Slides
 
How to Restrict Price Modification to Managers in Odoo 17 POS
How to Restrict Price Modification to Managers in Odoo 17 POSHow to Restrict Price Modification to Managers in Odoo 17 POS
How to Restrict Price Modification to Managers in Odoo 17 POS
 
Bagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptxBagong Pilipinas Pledge in Power pointpptx
Bagong Pilipinas Pledge in Power pointpptx
 
sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...
sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...
sdintegrating21stcenturyskillsinclassroom-basedassessment-240715032004-e59ed7...
 
How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17How to Configure Field Cleaning Rules in Odoo 17
How to Configure Field Cleaning Rules in Odoo 17
 
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 SlidesHow to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
How to Load Custom Field to POS in Odoo 17 - Odoo 17 Slides
 
ACTION PLAN ON NUTRITION MONTH 2024.docx
ACTION PLAN ON NUTRITION MONTH 2024.docxACTION PLAN ON NUTRITION MONTH 2024.docx
ACTION PLAN ON NUTRITION MONTH 2024.docx
 
Understanding Clergy Payroll : QuickBooks
Understanding Clergy Payroll : QuickBooksUnderstanding Clergy Payroll : QuickBooks
Understanding Clergy Payroll : QuickBooks
 
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 SlidesHow to Integrate Facebook in Odoo 17 - Odoo 17 Slides
How to Integrate Facebook in Odoo 17 - Odoo 17 Slides
 
What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17What is the Use of API.onchange in Odoo 17
What is the Use of API.onchange in Odoo 17
 
Odoo 17 Project Module : New Features - Odoo 17 Slides
Odoo 17 Project Module : New Features - Odoo 17 SlidesOdoo 17 Project Module : New Features - Odoo 17 Slides
Odoo 17 Project Module : New Features - Odoo 17 Slides
 
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry  by V.Jesinthal MaryPlato and Aristotle's Views on Poetry  by V.Jesinthal Mary
Plato and Aristotle's Views on Poetry by V.Jesinthal Mary
 
Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...
Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...
Life of Ah Gong and Ah Kim ~ A Story with Life Lessons (Hokkien, English & Ch...
 
How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17How to Manage Advanced Pricelist in Odoo 17
How to Manage Advanced Pricelist in Odoo 17
 
How to Configure Extra Steps During Checkout in Odoo 17 Website App
How to Configure Extra Steps During Checkout in Odoo 17 Website AppHow to Configure Extra Steps During Checkout in Odoo 17 Website App
How to Configure Extra Steps During Checkout in Odoo 17 Website App
 

Logistic Regression | Logistic Regression In Python | Machine Learning Algorithms | Simplilearn

  • 2. Surviving the Titanic Suppose, you have to build a model to predict how many people survived the Titanic shipwreck
  • 3. Surviving the Titanic Suppose, you have to build a model to predict how many people survived the Titanic shipwreck
  • 4. Surviving the Titanic • ID • Survived • Class • Name • Sex • Age • Siblings • Parents/children abroad • Ticket • Fare • Cabin • Place of Embarkment Teaching the model with the passenger dataset Dropping the non-essential components of the dataset Determining the survival of passengers and evaluating the model
  • 5. Agenda What is Supervised Learning? What is Classification? What are some of its solutions? What is Logistic Regression? Comparing Linear and Logistic Regression Logistic Regression applications Use Case – Predicting the number in an image
  • 6. What is Supervised Learning?
  • 7. What is Supervised Learning? That’s an apple! apple Teacher teaches child Child recognizes an apple when she sees it again A model is able to make predictions based on past data
  • 8. Where does Logistic Regression fit it? Machine Learning Supervised Learning Unsupervised Learning AssociationClusteringClassification Regression The systems predicts future outcomes based on training from past input
  • 10. A few Classification Solutions A B We take decisions using a tree structure. Each branch node represents a choice, and leaf node represents a decision Decision Trees
  • 11. A few Classification Solutions A B Decision Trees We take decisions using a tree structure. Each branch node represents a choice, and leaf node represents a decision It helps determine what the given object is, based on its similarity to the objects it is compared toK=3 K=7 K-Nearest Neighbor
  • 12. It helps determine what the given object is, based on its similarity to the objects it is compared toK=3 K=7 K-Nearest Neighbor Decision Trees A few Classification Solutions A B We determine the probability of an event occurring with the help of a tree structure A dataset with one or more independent variables is used to determine binary output of the dependent variable Logistic Regression
  • 13. What is Logistic Regression?
  • 14. What is Logistic Regression? Imagine it’s been a few years since you serviced your car. One day you wonder…
  • 15. What is Logistic Regression? It is a classification algorithm, used to predict binary outcomes for a given set of independent variables. The dependent variable’s outcome is discrete. Regression model created based on other users’ experience 0.60 0.20 0.40 0.80 1.00 1 2 3 4 5 6 Years since service Probabilityofbreakdown How long until the car breaks down? You provide years since last service
  • 16. What is Logistic Regression? Probability>0.50 Value rounded off to 1 : The car will breakdown Probability<0.50 Value rounded off to 0: The car will not breakdown Here, the threshold value 0.50 indicates that the car is more likely to breakdown after 3.5 years of usage Model makes predictions 0.60 0.20 0.40 0.80 1.00 1 2 3 4 5 6 Years since last service Probabilityofbreakdown 0.50 0.29 0.90 Threshold Value
  • 17. What is Linear Regression?
  • 18. Linear Regression It is a statistical method that helps find the relationship between an independent and dependent variable, both of which are continuous He performed well in the last quarter. How much raise should he get?
  • 19. Linear Regression 41 2 3 5 5 10 15 20 25 Employee rating Salaryhike Collection of ratings and corresponding hikes Linear Regression is performed on data The management provides the corresponding salary hike Employee rating
  • 20. Linear and Logistic Regression Here’s the graph of how linear regression would be, for a given scenario x y
  • 21. Linear and Logistic Regression What if you wanted to know whether the employee would get a promotion or not based on their rating 41 2 3 5 0 =No 1=Yes Employee rating Probabilityofgettinga promotion
  • 22. Linear and Logistic Regression This graph would not be able to make such a prediction. So we clip the line at 0 and 1. 41 2 3 5 Employee rating 0 =No 1=Yes Probabilityofgettinga promotion
  • 23. Linear and Logistic Regression So, how did this… …become this? 41 2 3 5 Employee rating 41 2 3 5 Employee rating 0 =No 1=Yes Probabilityofgettinga promotion 0 =No 1=Yes Probabilityofgettinga promotion
  • 24. The Math behind Logistic Regression To understand Logistic Regression, let’s talk about the odds of success Odds (𝜃) = Probability of an event happening Probability of an event not happening or 𝜃 = 𝑝 1 − 𝑝 The values of odds range from 0 to ∞ The values of probability change from 0 to 1
  • 25. The Math behind Logistic Regression Type equation here. Take the equation of the straight line 𝛽0 x y Here, 𝛽0 is the y-intercept 𝛽1 is the slope of the line x is the value of the x co-ordinate y is the value of the prediction The equation would be: 𝑦 = 𝛽0 + 𝛽1 𝑥
  • 26. The Math behind Logistic Regression Type equation here. Now, we predict the odds of success e𝑙𝑛 𝑝 𝑥 1 − 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 log 𝑝 𝑥 1−𝑃 𝑥 = 𝛽0 + 𝛽1 𝑥 Exponentiating both sides: 𝑝 𝑥 1 − 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 Let Y = e 𝛽0+𝛽1 𝑥 Then 𝑝 𝑥 1−𝑝 𝑥 = Y 𝑝 𝑥 = 𝑌 1 − 𝑝 𝑥 𝑝 𝑥 = 𝑌 − 𝑌 𝑝 𝑥 𝑝 𝑥 + 𝑌 𝑝 𝑥 = 𝑌 𝑝 𝑥 1 + 𝑌 = 𝑌 𝑝 𝑥 = 𝑌 1 + 𝑌 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 1 + e 𝛽0+𝛽1 𝑥 The equation of a sigmoid function: 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 1 + e 𝛽0+𝛽1 𝑥 𝑝 𝑥 = 1 1 + e−(𝛽0+𝛽1 𝑥)
  • 27. The Math behind Logistic Regression Type equation here. Now, we predict the odds of success e𝑙𝑛 𝑝 𝑥 1 − 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 log 𝑝 𝑥 1−𝑃 𝑥 = 𝛽0 + 𝛽1 𝑥 Exponentiating both sides: 𝑝 𝑥 1 − 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 Let Y = e 𝛽0+𝛽1 𝑥 Then 𝑝 𝑥 1−𝑝 𝑥 = Y 𝑝 𝑥 = 𝑌 1 − 𝑝 𝑥 𝑝 𝑥 = 𝑌 − 𝑌 𝑝 𝑥 𝑝 𝑥 + 𝑌 𝑝 𝑥 = 𝑌 𝑝 𝑥 1 + 𝑌 = 𝑌 𝑝 𝑥 = 𝑌 1 + 𝑌 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 1 + e 𝛽0+𝛽1 𝑥 The equation of a sigmoid function: 𝑝 𝑥 = e 𝛽0+𝛽1 𝑥 1 + e 𝛽0+𝛽1 𝑥 𝑝 𝑥 = 1 1 + e−(𝛽0+𝛽1 𝑥) 41 2 3 5 0 0.25 0.50 0.75 1 Employee rating Probabilityofgettinga promotion A sigmoid curve is obtained!
  • 28. Comparing Linear and Logistic Regression
  • 29. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Regression Problems
  • 30. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • Used to solve Regression Problems
  • 31. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • Used to solve Regression Problems • The response variables are continuous in nature
  • 32. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • The response variable is categorical in nature • Used to solve Regression Problems • The response variables are continuous in nature
  • 33. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • The response variable is categorical in nature • Used to solve Regression Problems • The response variables are continuous in nature • It helps estimate the dependent variable when there is a change in the independent variable.
  • 34. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • The response variable is categorical in nature • It helps calculate the possibility of a particular event taking place. • Used to solve Regression Problems • The response variables are continuous in nature • It helps estimate the dependent variable when there is a change in the independent variable.
  • 35. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • The response variable is categorical in nature • It helps calculate the possibility of a particular event taking place. • Used to solve Regression Problems • The response variables are continuous in nature • It helps estimate the dependent variable when there is a change in the independent variable. • Is a straight line.
  • 36. How is Linear and Logistic Regression different? Linear Regression Logistic Regression • Used to solve Classification Problems • The response variable is categorical in nature • It helps calculate the possibility of a particular event taking place. • An S-curve. (S = Sigmoid) • Used to solve Regression Problems • The response variables are continuous in nature • It helps estimate the dependent variable when there is a change in the independent variable. • Is a straight line.
  • 37. Logistic Regression Applications Weather Prediction Helps determine the kind of weather that can be expected
  • 38. Identifies the different components that are present in the image, and helps categorize them Logistic Regression Applications Humans Animals Vehicles Image Categorization
  • 39. Determines the possibility of patient survival, taking age, ISS and RTS into consideration Logistic Regression Applications Healthcare (TRISS) Patient survival % Revised Trauma Score Injury Severity Score Age
  • 40. Use Case – Predicting numbers in images
  • 41. Use Case – Predicting numbers Can you guess what number I am? Are you a 3? 4? I don’t know! 8x8 image
  • 42. Use Case – Predicting numbers Dividing the data set Training set Test set The model being trained Model identifies number in images Test set applied A number 4 A number 1
  • 43. Use Case – Implementation Importing libraries and their associated methods Determining the total number of images and labels
  • 44. Use Case – Implementation Displaying some of the images and labels
  • 45. Use Case – Implementation Dividing dataset into Training and Test set
  • 46. Use Case – Implementation Import the Logistic Regression model Making an instance of the model and training it Predicting the output of the first element of the test set Predicting the output of the first 10 elements of the test set
  • 47. Use Case – Implementation Predicting for the entire dataset Determining the accuracy of the model Representing the confusion matrix in a heat map
  • 48. Use Case – Implementation Accurately predicting the image to contain a zero Inaccurately predicting the image to contain a seven
  • 49. Use Case – Implementation Presenting predictions and actual output
  • 50. Use Case – Predicting numbers Dividing the data set Training set Test set The model being trained Model identifies number in images Test set applied A number 4 A number 2
  • 51. Here’s What You’ve Learnt so Far

Editor's Notes

  1. Style - 01
  2. Style - 01