尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
Machine Learning Example
How does
Snapchat
filter work?
Machine Learning Example
Machine Learning Example
Matrix of numbers
Machine Learning Example
Matrix of numbers
Looks for color patterns
on face
Machine Learning Example
Matrix of numbers
Looks for color patterns
on face
Points align
themselves and
look for areas of
contrast
Machine Learning Example
Matrix of numbers
Looks for color patterns
on face
Points align
themselves and
look for areas of
contrast
What’s in it for you?
Types of Machine Learning Algorithms
Real World Applications of Machine Learning
Processes involved in Machine Learning
What is Machine Learning?
Logistic Regression
Linear Regression
Decision Tree and Random forest
K Nearest Neighbors
Popular Algorithms with Hands On Demo
Real World Applications of
Machine Learning
Real World Applications of Machine Learning
Face Recognition Healthcare Industry Weather Forecasting
Produce a Web Series Prepare a new Drink
Siri and Cortana
What is Machine Learning?
What is Machine Learning?
Machine Learning is the science of making computers learn and act like humans by feeding
data and information without being explicitly programmed.
What is Machine Learning?
Past Data
Machine Learning is the science of making computers learn and act like humans by feeding
data and information without being explicitly programmed.
What is Machine Learning?
Past Data
Analyses
Machine Learning is the science of making computers learn and act like humans by feeding
data and information without being explicitly programmed.
What is Machine Learning?
Past Data
Analyses
Trains
Machine Learning is the science of making computers learn and act like humans by feeding
data and information without being explicitly programmed.
What is Machine Learning?
Past Data
Analyses
Predicts
Trains
Machine Learning is the science of making computers learn and act like humans by feeding
data and information without being explicitly programmed.
Output
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Data
Pre-Processing
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Data
Pre-Processing
Choose
Model
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Data
Pre-Processing
Choose
Model
Train Model
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Data
Pre-Processing
Choose
Model
Train Model
Test Model
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Data
Pre-Processing
Choose
Model
Train Model
Test Model
Tune Model
Processes involved in Machine Learning
Data
Gathering
7Machine Learning
Processes
Data
Pre-Processing
Choose
Model
Train Model
Test Model
Tune Model
Prediction
Types of Machine Learning Algorithms
VSupervised
Learning
Un-Supervised
Learning
Reinforcement
Learning
Machine
Learning
Association
• Market Basket Analysis
• Text Mining
• Face Recognition
Classification
• Fraud Detection
• Email Spam Detection
• Image Classification
Regression
• Weather Forecasting
• Risk Assessment
• Score Prediction
Clustering
• Medical Research
• City Planning
• Targeted Marketing
Reinforcement Learning
• Gaming
• Robot Navigation
• Stock Trading
• Assembly Line Processes
Popular Algorithms in Machine Learning
Algorithm 1
Linear
Regression
Popular Algorithms in Machine Learning
Algorithm 1
Algorithm 2
Linear
Regression
Logistic
Regression
Popular Algorithms in Machine Learning
Algorithm 1
Decision
Tree
Algorithm 2
Algorithm 3
Linear
Regression
Logistic
Regression
Popular Algorithms in Machine Learning
Algorithm 1
Decision
Tree
Random
Forest
Algorithm 2
Algorithm 3
Algorithm 4
Linear
Regression
Logistic
Regression
Popular Algorithms in Machine Learning
Algorithm 1
Decision
Tree
Random
Forest
K Nearest
Neighbors
Algorithm 2
Algorithm 3
Algorithm 4
Algorithm 5
Linear
Regression
Logistic
Regression
Linear Regression
History of Linear Regression
Linear Regression: Brief history on how Regression came into picture.
Francis Galton Heights of Father and Son
Studied
Best fit
line
Regression Line
Analyzed
Height Data
Mean Height of all People
Regressed
Linear Regression
Linear Regression is a linear modelling approach to find relationship between one or more independent variables (predictors)
denoted as X and dependent variable (target) denoted as Y.
Temperature
Sales
Temperature
Sales
Regression line to predict the sales
Plotting the sales of ice cream based
on temperature
Predict sales of Ice Cream based on temperature:
Linear Regression
Finding the best fit line: The best fit line can be found out by minimizing the distance between all the data points and the distance
to the regression line. Ways to minimize this distance are sum of squared errors, sum of absolute errors etc.
Distance between the data points
and the line is maximum
Not the best fit line
Finding the best fit line: The best fit line can be found out by minimizing the distance between all the data points and the distance
to the regression line. Ways to minimize this distance are sum of squared errors, sum of absolute errors etc.
Linear Regression
Not the best fit line
Distance between the data points
and the line can still be reduced
Linear Regression
Finding the best fit line: The best fit line can be found out by minimizing the distance between all the data points and the distance
to the regression line. Ways to minimize this distance are sum of squared errors, sum of absolute errors etc.
Distance between the data points
and the line is the least
Best fit regression line
Implementation of Linear Regression
Linear Regression: Predict Employee Salary based on Years of Experience.
HR team trying to figure out how much
to pay to a new joinee?
Predict Salary
How much do we pay her?
New Joinee
Years of experience
Salary
Employee data of Salary
based on Years of experience
Implementation of Linear Regression
1. Load the libraries:
2. Import the Dataset:
Implementation of Linear Regression
3. Visualize the data:
Implementation of Linear Regression
4. Split the data into training and testing set:
5. Fit Simple Linear Regression to the training dataset:
Implementation of Linear Regression
6. Predict the test set results:
Implementation of Linear Regression
7. Visualize the train set results:
Implementation of Linear Regression
8. Visualize the test set results:
Implementation of Linear Regression
9. Calculating the residuals:
Since the RMSE value is too less, the model is a good model
Logistic Regression
Logistic Regression
Logistic Regression is a Classification algorithm used to predict discrete/ categorical values
Who will default on their credit card payment?
Logistic Regression
Logistic Regression is a Classification algorithm used to predict discrete/ categorical values
Who will default on their credit card payment?
Credit card users
Logistic Regression
Logistic Regression is a Classification algorithm used to predict discrete/ categorical values
Who will default on their credit card payment?
Credit card users Make credit card
transaction
Logistic Regression
Logistic Regression is a Classification algorithm used to predict discrete/ categorical values
Who will default on their credit card payment?
Credit card users
Plot of monthly credit card balance
and annual income
Make credit card
transaction
Logistic Regression
Plotting the Logistic Regression Curve: The Logistic Regression curve is known as the Sigmoid curve (S curve)
Predicted Y lies in the range 0 and 1
1
1 + e-zP =
Predicted Y can exceed the range 0 and 1
Y = m1x+c0
Logistic Regression
Plotting the Logistic Regression Curve: The Logistic Regression curve is known as the Sigmoid curve (S curve)
Y = m1x+c0
0.5
Threshold
value
0.5
Cutoff point at 0.5, anything below it
results in 0 and above is 1
Red data point will default as it is above
the threshold value of 0.5 and green data
point won’t as it is below the threshold
value
Implementation of Logistic Regression
Logistic Regression: Predict if a person will buy an SUV based on their Age and Estimated Salary
Age Estimated
Salary
Implementation of Logistic Regression
1. Load the libraries:
2. Import the dataset and extract the independent and dependent variables:
Implementation of Logistic Regression
3. Visualize the dataset:
Implementation of Logistic Regression
4. Split the dataset into Training and Testing set:
5. Feature Scaling:
6. Fit Logistic Regression to Training dataset:
Implementation of Logistic Regression
7. Predicting the Test set results:
Implementation of Logistic Regression
8. Visualize the Train set results:
Implementation of Logistic Regression
9. Visualize the Test set results:
Implementation of Logistic Regression
11. Evaluating the model:
Understanding the Confusion Matrix:
N = 134 Predicted: No Predicted: Yes
Actual: No TN=79 FP=6
Actual: Yes FN=11 TP=38
Accuracy:
(TN+TP)/N
(79+38)/134 = 0.87
Misclassification Rate:
(FP+FN)/N
(6+11)/134 = 0.13
Decision Tree and
Random Forest
Decision Tree
Decision Tree is a tree where each node represents a feature (attribute), each link (branch) represents a decision and each leaf
represents an outcome (categorical or continuous value).
Should the person accept a new job offer?
Yes
Salary >
$60,000
Root Node
Accept a job offer?
Reject
Offer
No
Leaf node
Accept
offer
Yes
Reject
Offer
No
Reject
Offer
YesNo
Performance
Incentives
Decision
node
Commute > 1
hour
Implementation of Decision Tree
Decision Tree and Random Forest: Does Kyphosis exist after a surgery?
Bunch of kids Kyphosis surgery Predict kyphosis
present or absent?
Implementation of Decision Tree
Classification Tree for Kyphosis:
Start>=8.5
Absent 64/17
Present
8/11
No
Start>=14.5
Absent 56/6
Yes
Absent
12/0
Yes
Absent
29/0
Yes
Absent
12/2
Yes
Age<55
Absent 27/6
No
Age>=111
Absent 15/6
No
Present
3/4
No
Implementation of Decision Tree
1. Load the libraries:
2. Import the dataset and extract the independent and dependent variables:
Implementation of Decision Tree
3. Visualize the data:
Implementation of Decision Tree
4. Split the data into Train and Test set:
5. Train a Decision Tree:
Implementation of Decision Tree
6. Predict the Model:
Implementation of Decision Tree
N = 25 Predicted: No Predicted: Yes
Actual: No TN=16 FP=4
Actual: Yes FN=2 TP=3
7. Evaluate the Model:
Understanding the confusion matrix: Accuracy:
(TN+TP)/N
(16+3)/25 = 0.76
Misclassification Rate:
(FP+FN)/N
(4+2)/25 = 0.24
Improving performance using Random Forest
Compare the model using Random Forest Tree:
Accuracy:
(TN+TP)/N
(18+2)/25 = 0.80
Misclassification Rate:
(FP+FN)/N
(2+3)/25 = 0.20
Algorithm 5
K Nearest Neighbors
K Nearest Neighbors (KNN)
K Nearest Neighbors: KNN is a Classification algorithm generally used to predict categorical values.
Height(ft)
Weight (lbs)
Class Dog
1.5
3.5
2.0
3.0
2.5
1.0
0.5
0 65 75 9585 105
Class Cat
Weight (lbs)
Class Dog
1.5
3.5
2.0
3.0
2.5
1.0
0.5
0 65 75 9585 105
Height(ft)
New data
point
Class Cat
To find if a new data point is a or a ?
Choosing a K will define what class a new data point is assigned to:
K Nearest Neighbors
Height(ft)
Class Dog
Weight (lbs)
0.5
2.5
2.0
1.5
3.0
1.0
3.5
10565 75 85 95
Class Cat
K=3
If K=3, the new data point
belongs to class Cat
K=7
If K=7, the new data point
belongs to class Dog
Implementation of KNN
Predict if a person will buy an SUV based on Age and Estimated Salary
Age Estimated
Salary
Implementation of KNN
1. Load the Libraries:
2. Load the Dataset:
Implementation of KNN
3. Visualize the dataset:
Implementation of KNN
4. Split the data into Train and Test set:
5. Feature Scaling:
Implementation of KNN
6. Fit KNN to Train set:
7. Predict the Test set results:
Implementation of KNN
8. Visualize the Train set results:
Implementation of KNN
9. Visualize the Test set results:
Implementation of KNN
10. Evaluate the model by creating a confusion matrix:
Understanding the confusion matrix:
N = 100 Predicted: No Predicted: Yes
Actual: No TN=64 FP=4
Actual: Yes FN=3 TP=29
Accuracy:
(TN+TP)/N
(64+29)/100 = 0.93
Misclassification Rate:
(FP+FN)/N
(4+3)/100 = 0.07
Summary
Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algorithms | Simplilearn

More Related Content

What's hot

Intro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning PresentationIntro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning Presentation
Ankit Gupta
 
Machine learning
Machine learning Machine learning
Machine learning
Saurabh Agrawal
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
Darshan Ambhaikar
 
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | EdurekaSupervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
Edureka!
 
Deep learning presentation
Deep learning presentationDeep learning presentation
Deep learning presentation
Tunde Ajose-Ismail
 
Machine learning ppt
Machine learning pptMachine learning ppt
Machine learning ppt
Rajat Sharma
 
Machine Learning and its Applications
Machine Learning and its ApplicationsMachine Learning and its Applications
Machine Learning and its Applications
Dr Ganesh Iyer
 
Types of Machine Learning
Types of Machine LearningTypes of Machine Learning
Types of Machine Learning
Samra Shahzadi
 
Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?
Marina Santini
 
Unsupervised learning
Unsupervised learningUnsupervised learning
Unsupervised learning
amalalhait
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
Rahul Kumar
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
Laguna State Polytechnic University
 
Deep learning
Deep learningDeep learning
Deep learning
Ratnakar Pandey
 
Machine learning Algorithms
Machine learning AlgorithmsMachine learning Algorithms
Machine learning Algorithms
Walaa Hamdy Assy
 
Data science
Data scienceData science
Data science
SwapnilDahake2
 
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Simplilearn
 
Ppt on data science
Ppt on data science Ppt on data science
Ppt on data science
Ansh Budania
 
Applications of Machine Learning
Applications of Machine LearningApplications of Machine Learning
Applications of Machine Learning
Hayim Makabee
 
Machine Learning Deep Learning AI and Data Science
Machine Learning Deep Learning AI and Data Science Machine Learning Deep Learning AI and Data Science
Machine Learning Deep Learning AI and Data Science
Venkata Reddy Konasani
 
Machine learning
Machine learningMachine learning
Machine learning
Rajib Kumar De
 

What's hot (20)

Intro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning PresentationIntro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning Presentation
 
Machine learning
Machine learning Machine learning
Machine learning
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | EdurekaSupervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
 
Deep learning presentation
Deep learning presentationDeep learning presentation
Deep learning presentation
 
Machine learning ppt
Machine learning pptMachine learning ppt
Machine learning ppt
 
Machine Learning and its Applications
Machine Learning and its ApplicationsMachine Learning and its Applications
Machine Learning and its Applications
 
Types of Machine Learning
Types of Machine LearningTypes of Machine Learning
Types of Machine Learning
 
Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?
 
Unsupervised learning
Unsupervised learningUnsupervised learning
Unsupervised learning
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Deep learning
Deep learningDeep learning
Deep learning
 
Machine learning Algorithms
Machine learning AlgorithmsMachine learning Algorithms
Machine learning Algorithms
 
Data science
Data scienceData science
Data science
 
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
Supervised and Unsupervised Learning In Machine Learning | Machine Learning T...
 
Ppt on data science
Ppt on data science Ppt on data science
Ppt on data science
 
Applications of Machine Learning
Applications of Machine LearningApplications of Machine Learning
Applications of Machine Learning
 
Machine Learning Deep Learning AI and Data Science
Machine Learning Deep Learning AI and Data Science Machine Learning Deep Learning AI and Data Science
Machine Learning Deep Learning AI and Data Science
 
Machine learning
Machine learningMachine learning
Machine learning
 

Similar to Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algorithms | Simplilearn

Data Analysis - Making Big Data Work
Data Analysis - Making Big Data WorkData Analysis - Making Big Data Work
Data Analysis - Making Big Data Work
David Chiu
 
HRUG - Linear regression with R
HRUG - Linear regression with RHRUG - Linear regression with R
HRUG - Linear regression with R
egoodwintx
 
Nss power point_machine_learning
Nss power point_machine_learningNss power point_machine_learning
Nss power point_machine_learning
Gauravsd2014
 
Post Graduate Admission Prediction System
Post Graduate Admission Prediction SystemPost Graduate Admission Prediction System
Post Graduate Admission Prediction System
IRJET Journal
 
LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.
LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.
LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.
Souma Maiti
 
Machine Learning.pptx
Machine Learning.pptxMachine Learning.pptx
Machine Learning.pptx
NitinSharma134320
 
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Edureka!
 
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET Journal
 
Egypt hackathon 2014 analytics & spss session
Egypt hackathon 2014   analytics & spss sessionEgypt hackathon 2014   analytics & spss session
Egypt hackathon 2014 analytics & spss session
M Baddar
 
Employee mode of commuting
Employee mode of commutingEmployee mode of commuting
Employee mode of commuting
Saleesh Satheeshchandran
 
Barga Data Science lecture 9
Barga Data Science lecture 9Barga Data Science lecture 9
Barga Data Science lecture 9
Roger Barga
 
Practical Machine Learning at Work
Practical Machine Learning at WorkPractical Machine Learning at Work
Practical Machine Learning at Work
IDEAS - Int'l Data Engineering and Science Association
 
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
Agile Testing Alliance
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
ThinkInnovation
 
Loan Eligibility Checker
Loan Eligibility CheckerLoan Eligibility Checker
Loan Eligibility Checker
KiranVodela
 
Stock prediction1600759770283_ak.ppt.pptx
Stock prediction1600759770283_ak.ppt.pptxStock prediction1600759770283_ak.ppt.pptx
Stock prediction1600759770283_ak.ppt.pptx
jesidil290
 
1440 track 2 boire_using our laptop
1440 track 2 boire_using our laptop1440 track 2 boire_using our laptop
1440 track 2 boire_using our laptop
Rising Media, Inc.
 
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Simplilearn
 
Internship Presentation.pdf
Internship Presentation.pdfInternship Presentation.pdf
Internship Presentation.pdf
vishwajeetparmar1
 
Machine learning Chapter 1
Machine learning Chapter 1Machine learning Chapter 1
Machine learning Chapter 1
JagadishPogu
 

Similar to Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algorithms | Simplilearn (20)

Data Analysis - Making Big Data Work
Data Analysis - Making Big Data WorkData Analysis - Making Big Data Work
Data Analysis - Making Big Data Work
 
HRUG - Linear regression with R
HRUG - Linear regression with RHRUG - Linear regression with R
HRUG - Linear regression with R
 
Nss power point_machine_learning
Nss power point_machine_learningNss power point_machine_learning
Nss power point_machine_learning
 
Post Graduate Admission Prediction System
Post Graduate Admission Prediction SystemPost Graduate Admission Prediction System
Post Graduate Admission Prediction System
 
LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.
LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.
LOAN APPROVAL PRDICTION SYSTEM USING MACHINE LEARNING.
 
Machine Learning.pptx
Machine Learning.pptxMachine Learning.pptx
Machine Learning.pptx
 
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
Data Analytics For Beginners | Introduction To Data Analytics | Data Analytic...
 
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
IRJET- Prediction of Crime Rate Analysis using Supervised Classification Mach...
 
Egypt hackathon 2014 analytics & spss session
Egypt hackathon 2014   analytics & spss sessionEgypt hackathon 2014   analytics & spss session
Egypt hackathon 2014 analytics & spss session
 
Employee mode of commuting
Employee mode of commutingEmployee mode of commuting
Employee mode of commuting
 
Barga Data Science lecture 9
Barga Data Science lecture 9Barga Data Science lecture 9
Barga Data Science lecture 9
 
Practical Machine Learning at Work
Practical Machine Learning at WorkPractical Machine Learning at Work
Practical Machine Learning at Work
 
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
#ATAGTR2021 Presentation : "Use of AI and ML in Performance Testing" by Adolf...
 
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
Predictive Analysis - Using Insight-informed Data to Determine Factors Drivin...
 
Loan Eligibility Checker
Loan Eligibility CheckerLoan Eligibility Checker
Loan Eligibility Checker
 
Stock prediction1600759770283_ak.ppt.pptx
Stock prediction1600759770283_ak.ppt.pptxStock prediction1600759770283_ak.ppt.pptx
Stock prediction1600759770283_ak.ppt.pptx
 
1440 track 2 boire_using our laptop
1440 track 2 boire_using our laptop1440 track 2 boire_using our laptop
1440 track 2 boire_using our laptop
 
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
Machine Learning Engineer Salary, Roles And Responsibilities, Skills and Resu...
 
Internship Presentation.pdf
Internship Presentation.pdfInternship Presentation.pdf
Internship Presentation.pdf
 
Machine learning Chapter 1
Machine learning Chapter 1Machine learning Chapter 1
Machine learning Chapter 1
 

More from Simplilearn

Database Vs Data Warehouse Vs Data Lake : What Is the Difference
Database Vs Data Warehouse Vs Data Lake : What Is the DifferenceDatabase Vs Data Warehouse Vs Data Lake : What Is the Difference
Database Vs Data Warehouse Vs Data Lake : What Is the Difference
Simplilearn
 
Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...
Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...
Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...
Simplilearn
 
🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...
🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...
🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...
Simplilearn
 
Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...
Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...
Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...
Simplilearn
 
How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...
How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...
How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...
Simplilearn
 
Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...
Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...
Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...
Simplilearn
 
🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...
🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...
🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...
Simplilearn
 
🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...
🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...
🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...
Simplilearn
 
🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...
🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...
🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...
Simplilearn
 
🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...
🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...
🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...
Simplilearn
 
Project Manager vs Program Manager - What’s the Difference ? | Project Manage...
Project Manager vs Program Manager - What’s the Difference ? | Project Manage...Project Manager vs Program Manager - What’s the Difference ? | Project Manage...
Project Manager vs Program Manager - What’s the Difference ? | Project Manage...
Simplilearn
 
Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...
Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...
Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...
Simplilearn
 
🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn
🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn
🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn
Simplilearn
 
ChatGPT in Cybersecurity
ChatGPT in CybersecurityChatGPT in Cybersecurity
ChatGPT in Cybersecurity
Simplilearn
 
Whatis SQL Injection.pptx
Whatis SQL Injection.pptxWhatis SQL Injection.pptx
Whatis SQL Injection.pptx
Simplilearn
 
Top 5 High Paying Cloud Computing Jobs in 2023
 Top 5 High Paying Cloud Computing Jobs in 2023  Top 5 High Paying Cloud Computing Jobs in 2023
Top 5 High Paying Cloud Computing Jobs in 2023
Simplilearn
 
Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024
Simplilearn
 
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Simplilearn
 
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
Simplilearn
 
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Simplilearn
 

More from Simplilearn (20)

Database Vs Data Warehouse Vs Data Lake : What Is the Difference
Database Vs Data Warehouse Vs Data Lake : What Is the DifferenceDatabase Vs Data Warehouse Vs Data Lake : What Is the Difference
Database Vs Data Warehouse Vs Data Lake : What Is the Difference
 
Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...
Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...
Cyber Security Interview Questions and Answers | Cyber Security Interview Tip...
 
🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...
🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...
🔥 Cyber Security Engineer Vs Ethical Hacker: What's The Difference | Cybersec...
 
Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...
Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...
Top 10 Companies Hiring Machine Learning Engineer | Machine Learning Jobs | A...
 
How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...
How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...
How to Become Strategy Manager 2023 ? | Strategic Management | Roadmap | Simp...
 
Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...
Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...
Top 20 Devops Engineer Interview Questions And Answers For 2023 | Devops Tuto...
 
🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...
🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...
🔥 Big Data Engineer Roadmap 2023 | How To Become A Big Data Engineer In 2023 ...
 
🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...
🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...
🔥 AI Engineer Resume For 2023 | CV For AI Engineer | AI Engineer CV 2023 | Si...
 
🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...
🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...
🔥 Top 5 Skills For Data Engineer In 2023 | Data Engineer Skills Required For ...
 
🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...
🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...
🔥 6 Reasons To Become A Data Engineer | Why You Should Become A Data Engineer...
 
Project Manager vs Program Manager - What’s the Difference ? | Project Manage...
Project Manager vs Program Manager - What’s the Difference ? | Project Manage...Project Manager vs Program Manager - What’s the Difference ? | Project Manage...
Project Manager vs Program Manager - What’s the Difference ? | Project Manage...
 
Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...
Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...
Deloitte Interview Questions And Answers | Top 45 Deloitte Interview Question...
 
🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn
🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn
🔥 Deep Learning Roadmap 2024 | Deep Learning Career Path 2024 | Simplilearn
 
ChatGPT in Cybersecurity
ChatGPT in CybersecurityChatGPT in Cybersecurity
ChatGPT in Cybersecurity
 
Whatis SQL Injection.pptx
Whatis SQL Injection.pptxWhatis SQL Injection.pptx
Whatis SQL Injection.pptx
 
Top 5 High Paying Cloud Computing Jobs in 2023
 Top 5 High Paying Cloud Computing Jobs in 2023  Top 5 High Paying Cloud Computing Jobs in 2023
Top 5 High Paying Cloud Computing Jobs in 2023
 
Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024
 
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
 
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
 
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
 

Recently uploaded

Interprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdfInterprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdf
Ben Aldrich
 
Accounting for Restricted Grants When and How To Record Properly
Accounting for Restricted Grants  When and How To Record ProperlyAccounting for Restricted Grants  When and How To Record Properly
Accounting for Restricted Grants When and How To Record Properly
TechSoup
 
Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024
khabri85
 
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT KanpurDiversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Quiz Club IIT Kanpur
 
Erasmus + DISSEMINATION ACTIVITIES Croatia
Erasmus + DISSEMINATION ACTIVITIES CroatiaErasmus + DISSEMINATION ACTIVITIES Croatia
Erasmus + DISSEMINATION ACTIVITIES Croatia
whatchangedhowreflec
 
Decolonizing Universal Design for Learning
Decolonizing Universal Design for LearningDecolonizing Universal Design for Learning
Decolonizing Universal Design for Learning
Frederic Fovet
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapitolTechU
 
managing Behaviour in early childhood education.pptx
managing Behaviour in early childhood education.pptxmanaging Behaviour in early childhood education.pptx
managing Behaviour in early childhood education.pptx
nabaegha
 
IoT (Internet of Things) introduction Notes.pdf
IoT (Internet of Things) introduction Notes.pdfIoT (Internet of Things) introduction Notes.pdf
IoT (Internet of Things) introduction Notes.pdf
roshanranjit222
 
A Quiz on Drug Abuse Awareness by Quizzito
A Quiz on Drug Abuse Awareness by QuizzitoA Quiz on Drug Abuse Awareness by Quizzito
A Quiz on Drug Abuse Awareness by Quizzito
Quizzito The Quiz Society of Gargi College
 
What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17
Celine George
 
220711130097 Tulip Samanta Concept of Information and Communication Technology
220711130097 Tulip Samanta Concept of Information and Communication Technology220711130097 Tulip Samanta Concept of Information and Communication Technology
220711130097 Tulip Samanta Concept of Information and Communication Technology
Kalna College
 
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
220711130083 SUBHASHREE RAKSHIT  Internet resources for social science220711130083 SUBHASHREE RAKSHIT  Internet resources for social science
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
Kalna College
 
Observational Learning
Observational Learning Observational Learning
Observational Learning
sanamushtaq922
 
220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science
Kalna College
 
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
220711130100 udita Chakraborty  Aims and objectives of national policy on inf...220711130100 udita Chakraborty  Aims and objectives of national policy on inf...
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
Kalna College
 
220711130095 Tanu Pandey message currency, communication speed & control EPC ...
220711130095 Tanu Pandey message currency, communication speed & control EPC ...220711130095 Tanu Pandey message currency, communication speed & control EPC ...
220711130095 Tanu Pandey message currency, communication speed & control EPC ...
Kalna College
 
BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...
BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...
BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...
Nguyen Thanh Tu Collection
 
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptxContiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Kalna College
 
Information and Communication Technology in Education
Information and Communication Technology in EducationInformation and Communication Technology in Education
Information and Communication Technology in Education
MJDuyan
 

Recently uploaded (20)

Interprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdfInterprofessional Education Platform Introduction.pdf
Interprofessional Education Platform Introduction.pdf
 
Accounting for Restricted Grants When and How To Record Properly
Accounting for Restricted Grants  When and How To Record ProperlyAccounting for Restricted Grants  When and How To Record Properly
Accounting for Restricted Grants When and How To Record Properly
 
Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024Brand Guideline of Bashundhara A4 Paper - 2024
Brand Guideline of Bashundhara A4 Paper - 2024
 
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT KanpurDiversity Quiz Prelims by Quiz Club, IIT Kanpur
Diversity Quiz Prelims by Quiz Club, IIT Kanpur
 
Erasmus + DISSEMINATION ACTIVITIES Croatia
Erasmus + DISSEMINATION ACTIVITIES CroatiaErasmus + DISSEMINATION ACTIVITIES Croatia
Erasmus + DISSEMINATION ACTIVITIES Croatia
 
Decolonizing Universal Design for Learning
Decolonizing Universal Design for LearningDecolonizing Universal Design for Learning
Decolonizing Universal Design for Learning
 
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptxCapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
CapTechTalks Webinar Slides June 2024 Donovan Wright.pptx
 
managing Behaviour in early childhood education.pptx
managing Behaviour in early childhood education.pptxmanaging Behaviour in early childhood education.pptx
managing Behaviour in early childhood education.pptx
 
IoT (Internet of Things) introduction Notes.pdf
IoT (Internet of Things) introduction Notes.pdfIoT (Internet of Things) introduction Notes.pdf
IoT (Internet of Things) introduction Notes.pdf
 
A Quiz on Drug Abuse Awareness by Quizzito
A Quiz on Drug Abuse Awareness by QuizzitoA Quiz on Drug Abuse Awareness by Quizzito
A Quiz on Drug Abuse Awareness by Quizzito
 
What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17What are the new features in the Fleet Odoo 17
What are the new features in the Fleet Odoo 17
 
220711130097 Tulip Samanta Concept of Information and Communication Technology
220711130097 Tulip Samanta Concept of Information and Communication Technology220711130097 Tulip Samanta Concept of Information and Communication Technology
220711130097 Tulip Samanta Concept of Information and Communication Technology
 
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
220711130083 SUBHASHREE RAKSHIT  Internet resources for social science220711130083 SUBHASHREE RAKSHIT  Internet resources for social science
220711130083 SUBHASHREE RAKSHIT Internet resources for social science
 
Observational Learning
Observational Learning Observational Learning
Observational Learning
 
220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science220711130082 Srabanti Bag Internet Resources For Natural Science
220711130082 Srabanti Bag Internet Resources For Natural Science
 
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
220711130100 udita Chakraborty  Aims and objectives of national policy on inf...220711130100 udita Chakraborty  Aims and objectives of national policy on inf...
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
 
220711130095 Tanu Pandey message currency, communication speed & control EPC ...
220711130095 Tanu Pandey message currency, communication speed & control EPC ...220711130095 Tanu Pandey message currency, communication speed & control EPC ...
220711130095 Tanu Pandey message currency, communication speed & control EPC ...
 
BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...
BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...
BỘ BÀI TẬP TEST THEO UNIT - FORM 2025 - TIẾNG ANH 12 GLOBAL SUCCESS - KÌ 1 (B...
 
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptxContiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptx
 
Information and Communication Technology in Education
Information and Communication Technology in EducationInformation and Communication Technology in Education
Information and Communication Technology in Education
 

Machine Learning Algorithms | Machine Learning Tutorial | Data Science Algorithms | Simplilearn

  • 1.
  • 2. Machine Learning Example How does Snapchat filter work?
  • 5. Machine Learning Example Matrix of numbers Looks for color patterns on face
  • 6. Machine Learning Example Matrix of numbers Looks for color patterns on face Points align themselves and look for areas of contrast
  • 7. Machine Learning Example Matrix of numbers Looks for color patterns on face Points align themselves and look for areas of contrast
  • 8. What’s in it for you? Types of Machine Learning Algorithms Real World Applications of Machine Learning Processes involved in Machine Learning What is Machine Learning? Logistic Regression Linear Regression Decision Tree and Random forest K Nearest Neighbors Popular Algorithms with Hands On Demo
  • 9. Real World Applications of Machine Learning
  • 10. Real World Applications of Machine Learning Face Recognition Healthcare Industry Weather Forecasting Produce a Web Series Prepare a new Drink Siri and Cortana
  • 11. What is Machine Learning?
  • 12. What is Machine Learning? Machine Learning is the science of making computers learn and act like humans by feeding data and information without being explicitly programmed.
  • 13. What is Machine Learning? Past Data Machine Learning is the science of making computers learn and act like humans by feeding data and information without being explicitly programmed.
  • 14. What is Machine Learning? Past Data Analyses Machine Learning is the science of making computers learn and act like humans by feeding data and information without being explicitly programmed.
  • 15. What is Machine Learning? Past Data Analyses Trains Machine Learning is the science of making computers learn and act like humans by feeding data and information without being explicitly programmed.
  • 16. What is Machine Learning? Past Data Analyses Predicts Trains Machine Learning is the science of making computers learn and act like humans by feeding data and information without being explicitly programmed. Output
  • 17. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes
  • 18. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes Data Pre-Processing
  • 19. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes Data Pre-Processing Choose Model
  • 20. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes Data Pre-Processing Choose Model Train Model
  • 21. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes Data Pre-Processing Choose Model Train Model Test Model
  • 22. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes Data Pre-Processing Choose Model Train Model Test Model Tune Model
  • 23. Processes involved in Machine Learning Data Gathering 7Machine Learning Processes Data Pre-Processing Choose Model Train Model Test Model Tune Model Prediction
  • 24. Types of Machine Learning Algorithms VSupervised Learning Un-Supervised Learning Reinforcement Learning Machine Learning Association • Market Basket Analysis • Text Mining • Face Recognition Classification • Fraud Detection • Email Spam Detection • Image Classification Regression • Weather Forecasting • Risk Assessment • Score Prediction Clustering • Medical Research • City Planning • Targeted Marketing Reinforcement Learning • Gaming • Robot Navigation • Stock Trading • Assembly Line Processes
  • 25. Popular Algorithms in Machine Learning Algorithm 1 Linear Regression
  • 26. Popular Algorithms in Machine Learning Algorithm 1 Algorithm 2 Linear Regression Logistic Regression
  • 27. Popular Algorithms in Machine Learning Algorithm 1 Decision Tree Algorithm 2 Algorithm 3 Linear Regression Logistic Regression
  • 28. Popular Algorithms in Machine Learning Algorithm 1 Decision Tree Random Forest Algorithm 2 Algorithm 3 Algorithm 4 Linear Regression Logistic Regression
  • 29. Popular Algorithms in Machine Learning Algorithm 1 Decision Tree Random Forest K Nearest Neighbors Algorithm 2 Algorithm 3 Algorithm 4 Algorithm 5 Linear Regression Logistic Regression
  • 31. History of Linear Regression Linear Regression: Brief history on how Regression came into picture. Francis Galton Heights of Father and Son Studied Best fit line Regression Line Analyzed Height Data Mean Height of all People Regressed
  • 32. Linear Regression Linear Regression is a linear modelling approach to find relationship between one or more independent variables (predictors) denoted as X and dependent variable (target) denoted as Y. Temperature Sales Temperature Sales Regression line to predict the sales Plotting the sales of ice cream based on temperature Predict sales of Ice Cream based on temperature:
  • 33. Linear Regression Finding the best fit line: The best fit line can be found out by minimizing the distance between all the data points and the distance to the regression line. Ways to minimize this distance are sum of squared errors, sum of absolute errors etc. Distance between the data points and the line is maximum Not the best fit line
  • 34. Finding the best fit line: The best fit line can be found out by minimizing the distance between all the data points and the distance to the regression line. Ways to minimize this distance are sum of squared errors, sum of absolute errors etc. Linear Regression Not the best fit line Distance between the data points and the line can still be reduced
  • 35. Linear Regression Finding the best fit line: The best fit line can be found out by minimizing the distance between all the data points and the distance to the regression line. Ways to minimize this distance are sum of squared errors, sum of absolute errors etc. Distance between the data points and the line is the least Best fit regression line
  • 36. Implementation of Linear Regression Linear Regression: Predict Employee Salary based on Years of Experience. HR team trying to figure out how much to pay to a new joinee? Predict Salary How much do we pay her? New Joinee Years of experience Salary Employee data of Salary based on Years of experience
  • 37. Implementation of Linear Regression 1. Load the libraries: 2. Import the Dataset:
  • 38. Implementation of Linear Regression 3. Visualize the data:
  • 39. Implementation of Linear Regression 4. Split the data into training and testing set: 5. Fit Simple Linear Regression to the training dataset:
  • 40. Implementation of Linear Regression 6. Predict the test set results:
  • 41. Implementation of Linear Regression 7. Visualize the train set results:
  • 42. Implementation of Linear Regression 8. Visualize the test set results:
  • 43. Implementation of Linear Regression 9. Calculating the residuals: Since the RMSE value is too less, the model is a good model
  • 45. Logistic Regression Logistic Regression is a Classification algorithm used to predict discrete/ categorical values Who will default on their credit card payment?
  • 46. Logistic Regression Logistic Regression is a Classification algorithm used to predict discrete/ categorical values Who will default on their credit card payment? Credit card users
  • 47. Logistic Regression Logistic Regression is a Classification algorithm used to predict discrete/ categorical values Who will default on their credit card payment? Credit card users Make credit card transaction
  • 48. Logistic Regression Logistic Regression is a Classification algorithm used to predict discrete/ categorical values Who will default on their credit card payment? Credit card users Plot of monthly credit card balance and annual income Make credit card transaction
  • 49. Logistic Regression Plotting the Logistic Regression Curve: The Logistic Regression curve is known as the Sigmoid curve (S curve) Predicted Y lies in the range 0 and 1 1 1 + e-zP = Predicted Y can exceed the range 0 and 1 Y = m1x+c0
  • 50. Logistic Regression Plotting the Logistic Regression Curve: The Logistic Regression curve is known as the Sigmoid curve (S curve) Y = m1x+c0 0.5 Threshold value 0.5 Cutoff point at 0.5, anything below it results in 0 and above is 1 Red data point will default as it is above the threshold value of 0.5 and green data point won’t as it is below the threshold value
  • 51. Implementation of Logistic Regression Logistic Regression: Predict if a person will buy an SUV based on their Age and Estimated Salary Age Estimated Salary
  • 52. Implementation of Logistic Regression 1. Load the libraries: 2. Import the dataset and extract the independent and dependent variables:
  • 53. Implementation of Logistic Regression 3. Visualize the dataset:
  • 54. Implementation of Logistic Regression 4. Split the dataset into Training and Testing set: 5. Feature Scaling: 6. Fit Logistic Regression to Training dataset:
  • 55. Implementation of Logistic Regression 7. Predicting the Test set results:
  • 56. Implementation of Logistic Regression 8. Visualize the Train set results:
  • 57. Implementation of Logistic Regression 9. Visualize the Test set results:
  • 58. Implementation of Logistic Regression 11. Evaluating the model: Understanding the Confusion Matrix: N = 134 Predicted: No Predicted: Yes Actual: No TN=79 FP=6 Actual: Yes FN=11 TP=38 Accuracy: (TN+TP)/N (79+38)/134 = 0.87 Misclassification Rate: (FP+FN)/N (6+11)/134 = 0.13
  • 60. Decision Tree Decision Tree is a tree where each node represents a feature (attribute), each link (branch) represents a decision and each leaf represents an outcome (categorical or continuous value). Should the person accept a new job offer? Yes Salary > $60,000 Root Node Accept a job offer? Reject Offer No Leaf node Accept offer Yes Reject Offer No Reject Offer YesNo Performance Incentives Decision node Commute > 1 hour
  • 61. Implementation of Decision Tree Decision Tree and Random Forest: Does Kyphosis exist after a surgery? Bunch of kids Kyphosis surgery Predict kyphosis present or absent?
  • 62. Implementation of Decision Tree Classification Tree for Kyphosis: Start>=8.5 Absent 64/17 Present 8/11 No Start>=14.5 Absent 56/6 Yes Absent 12/0 Yes Absent 29/0 Yes Absent 12/2 Yes Age<55 Absent 27/6 No Age>=111 Absent 15/6 No Present 3/4 No
  • 63. Implementation of Decision Tree 1. Load the libraries: 2. Import the dataset and extract the independent and dependent variables:
  • 64. Implementation of Decision Tree 3. Visualize the data:
  • 65. Implementation of Decision Tree 4. Split the data into Train and Test set: 5. Train a Decision Tree:
  • 66. Implementation of Decision Tree 6. Predict the Model:
  • 67. Implementation of Decision Tree N = 25 Predicted: No Predicted: Yes Actual: No TN=16 FP=4 Actual: Yes FN=2 TP=3 7. Evaluate the Model: Understanding the confusion matrix: Accuracy: (TN+TP)/N (16+3)/25 = 0.76 Misclassification Rate: (FP+FN)/N (4+2)/25 = 0.24
  • 68. Improving performance using Random Forest Compare the model using Random Forest Tree: Accuracy: (TN+TP)/N (18+2)/25 = 0.80 Misclassification Rate: (FP+FN)/N (2+3)/25 = 0.20
  • 70. K Nearest Neighbors (KNN) K Nearest Neighbors: KNN is a Classification algorithm generally used to predict categorical values. Height(ft) Weight (lbs) Class Dog 1.5 3.5 2.0 3.0 2.5 1.0 0.5 0 65 75 9585 105 Class Cat Weight (lbs) Class Dog 1.5 3.5 2.0 3.0 2.5 1.0 0.5 0 65 75 9585 105 Height(ft) New data point Class Cat To find if a new data point is a or a ?
  • 71. Choosing a K will define what class a new data point is assigned to: K Nearest Neighbors Height(ft) Class Dog Weight (lbs) 0.5 2.5 2.0 1.5 3.0 1.0 3.5 10565 75 85 95 Class Cat K=3 If K=3, the new data point belongs to class Cat K=7 If K=7, the new data point belongs to class Dog
  • 72. Implementation of KNN Predict if a person will buy an SUV based on Age and Estimated Salary Age Estimated Salary
  • 73. Implementation of KNN 1. Load the Libraries: 2. Load the Dataset:
  • 74. Implementation of KNN 3. Visualize the dataset:
  • 75. Implementation of KNN 4. Split the data into Train and Test set: 5. Feature Scaling:
  • 76. Implementation of KNN 6. Fit KNN to Train set: 7. Predict the Test set results:
  • 77. Implementation of KNN 8. Visualize the Train set results:
  • 78. Implementation of KNN 9. Visualize the Test set results:
  • 79. Implementation of KNN 10. Evaluate the model by creating a confusion matrix: Understanding the confusion matrix: N = 100 Predicted: No Predicted: Yes Actual: No TN=64 FP=4 Actual: Yes FN=3 TP=29 Accuracy: (TN+TP)/N (64+29)/100 = 0.93 Misclassification Rate: (FP+FN)/N (4+3)/100 = 0.07

Editor's Notes

  1. Style - 01
  2. Style - 01
  3. Style - 01
  4. Style - 01
  5. Style - 01
  6. Style - 01
  7. Style - 01
  8. Style - 01
  9. Style - 01
  10. Style - 01
  11. Style - 01
  12. Style - 01
  13. Style - 01
  14. Style - 01
  15. Style - 01
  16. Style - 01
  17. Style - 01
  18. Style - 01
  19. Style - 01
  20. Style - 01
  21. Style - 01
  22. Style - 01
  23. Style - 01
  24. Style - 01
  25. Style - 01
  26. Style - 01
  27. Style - 01
  28. Style - 01
  29. Style - 01
  30. Style - 01
  31. Style - 01
  32. Style - 01
  33. Style - 01
  34. Style - 01
  35. Style - 01
  36. Style - 01
  37. Style - 01
  38. Style - 01
  39. Style - 01
  40. Style - 01
  41. Style - 01
  42. Style - 01
  43. Style - 01
  44. Style - 01
  45. Style - 01
  46. Style - 01
  47. Style - 01
  48. Style - 01
  49. Style - 01
  50. Style - 01
  51. Style - 01
  52. Style - 01
  53. Style - 01
  54. Style - 01
  55. Style - 01
  56. Style - 01
  57. Style - 01
  58. Style - 01
  59. Style - 01
  60. Style - 01
  61. Style - 01
  62. Style - 01
  63. Style - 01
  64. Style - 01
  65. Style - 01
  66. Style - 01
  67. Style - 01
  68. Style - 01
  69. Style - 01
  70. Style - 01
  71. Style - 01
  72. Style - 01
  73. Style - 01
  74. Style - 01
  75. Style - 01
  76. Style - 01
  77. Style - 01
  78. Style - 01
  翻译: