SlideShare una empresa de Scribd logo
1 de 12
Descargar para leer sin conexión
Introducing
Machine
Learning
Machine learning teaches computers to do what comes naturally to
humans and animals: learn from experience. Machine learning algorithms
use computational methods to “learn” information directly from data
without relying on a predetermined equation as a model. The algorithms
adaptively improve their performance as the number of samples available
for learning increases.
What is Machine
Learning?
Introducing Machine Learning
3
More Data,
More Questions,
Better Answers
Machine learning algorithms find natural patterns in data
that generate insight and help you make better decisions and
predictions. They are used every day to make critical decisions
in medical diagnosis, stock trading, energy load forecasting, and
more. Media sites rely on machine learning to sift through millions
of options to give you song or movie recommendations. Retailers
use it to gain insight into their customers’ purchasing behavior.
Real-World Applications
With the rise in big data, machine learning has
become particularly important for solving problems
in areas like these:
•	 Computational finance, for credit 		
	 scoring and algorithmic trading
•	 Image processing and computer vision, 		
	 for face recognition, motion detection, and 	
	 object detection
•	 Computational biology, for tumor 		
	 detection, drug discovery, and DNA 		
	sequencing
•	 Energy production, for price and load 		
	forecasting
•	 Automotive, aerospace, and 			
	 manufacturing, for predictive maintenance
•	 Natural language processing
Introducing Machine Learning
4
How Machine
Learning Works
Machine learning uses two types of techniques: supervised
learning, which trains a model on known input and output data so
that it can predict future outputs, and unsupervised learning, which
finds hidden patterns or intrinsic structures in input data.
Group and interpret
data based only
on input data
Develop predictive
model based on both
input and output data
MACHINE LEARNING
UNSUPERVISED
LEARNING
SUPERVISED
LEARNING
CLUSTERING
CLASSIFICATION
REGRESSION
Machine Learning Techniques
Introducing Machine Learning
5
Supervised
Learning
The aim of supervised machine learning is to build a model
that makes predictions based on evidence in the presence of
uncertainty. A supervised learning algorithm takes a known set of
input data and known responses to the data (output) and trains a
model to generate reasonable predictions for the response
to new data.
Supervised learning uses classification and regression techniques
to develop predictive models.
•	 Classification techniques predict discrete responses—for 	
	 example, whether an email is genuine or spam, or whether 	
	 a tumor is cancerous or benign. Classification models 		
	 classify input data into categories. Typical applications 		
	 include medical imaging, speech recognition, and
	 credit scoring.
•	 Regression techniques predict continuous responses—		
	 for example, changes in temperature or fluctuations in 		
	 power demand. Typical applications include 			
	 electricity load forecasting and algorithmic trading.
Using Supervised Learning to
Predict Heart Attacks
Suppose clinicians want to predict whether
someone will have a heart attack within a year.
They have data on previous patients, including age,
weight, height, and blood pressure. They know
whether the previous patients had heart attacks
within a year. So the problem is combining the
existing data into a model that can predict whether
a new person will have a heart attack
within a year.
Introducing Machine Learning
6
Unsupervised
Learning
Unsupervised learning finds hidden patterns or intrinsic structures
in data. It is used to draw inferences from datasets consisting of
input data without labeled responses.
Clustering is the most common unsupervised learning
technique. It is used for exploratory data analysis to find hidden
patterns or groupings in data.
Applications for clustering include gene sequence analysis,
market research, and object recognition.
Clustering
Patterns in
the Data
Introducing Machine Learning
7
How Do You Decide
Which Algorithm
to Use?
Choosing the right algorithm can seem overwhelming—there
are dozens of supervised and unsupervised machine learning
algorithms, and each takes a different approach to learning.
There is no best method or one size fits all. Finding the right
algorithm is partly just trial and error—even highly experienced
data scientists can’t tell whether an algorithm will work without
trying it out. But algorithm selection also depends on the size and
type of data you’re working with, the insights you want to get from
the data, and how those insights will be used.
MACHINE LEARNING
CLUSTERING
CLASSIFICATION REGRESSION
Support Vector
Machines
Discriminant
Analysis
Naive Bayes
Nearest Neighbor
Linear Regression,
GLM
SVR, GPR
Ensemble Methods
Decision Trees
Neural Networks
K-Means, K-Medoids
Fuzzy C-Means
Hierarchical
Gaussian Mixture
Neural Networks
Hidden Markov
Model
UNSUPERVISED
LEARNING
SUPERVISED
LEARNING
Selecting an Algorithm
Introducing Machine Learning
8
When Should
You Use Machine
Learning?
Consider using machine learning when you have a complex task or
problem involving a large amount of data and lots of variables, but
no existing formula or equation. For example, machine learning is a
good option if you need to handle situations like these:
Hand-written rules and equations
are too complex—as in face
recognition and speech recognition.
The rules of a task are constantly
changing—as in fraud detection
from transaction records.
The nature of the data keeps
changing, and the program needs
to adapt—as in automated trading,
energy demand forecasting, and
predicting shopping trends.
Introducing Machine Learning
9
Real-World Examples
Creating Algorithms that Can Analyze
Works of Art
Researchers at the Art and Artificial Intelligence
Laboratory at Rutgers University wanted to see whether
a computer algorithm could classify paintings by style,
genre, and artist as easily as a human. They began by
identifying visual features for classifying a painting’s
style. The algorithms they developed classified the
styles of paintings in the database with 60% accuracy,
outperforming typical non-expert humans.
The researchers hypothesized that visual features useful
for style classification (a supervised learning problem)
could also be used to determine artistic influences (an
unsupervised problem).
They used classification algorithms trained on Google
images to identify specific objects. They tested the
algorithms on more than 1,700 paintings from 66
different artists working over a span of 550 years. The
algorithm readily identified connected works, including
the influence of Diego Velazquez’s “Portrait of Pope
Innocent X” on Francis Bacon’s “Study After Velazquez’s
Portrait of Pope Innocent X.”
Introducing Machine Learning
10
Optimizing HVAC Energy Usage in
Large Buildings
The heating, ventilation, and air-conditioning (HVAC)
systems in office buildings, hospitals, and other large-
scale commercial buildings are often inefficient because
they do not take into account changing weather patterns,
variable energy costs, or the building’s thermal properties.
Building IQ’s cloud-based software platform addresses
this problem. The platform uses advanced algorithms
and machine learning methods to continuously
process gigabytes of information from power meters,
thermometers, and HVAC pressure sensors, as well as
weather and energy cost. In particular, machine learning
is used to segment data and determine the relative
contributions of gas, electric, steam, and solar power
to heating and cooling processes. The building IQ
platform reduces HVAC energy consumption in large-
scale commercial buildings by 10% - 25% during normal
operation.
Real-World Examples
Introducing Machine Learning
11
Detecting Low-Speed Car Crashes
With more than 8 million members, the RAC is one of the
UK’s largest motoring organizations, providing roadside
assistance, insurance, and other services to private and
business motorists.
To enable rapid response to roadside incidents,
reduce crashes, and mitigate insurance costs, the RAC
developed an onboard crash sensing system that uses
advanced machine learning algorithms to detect low-
speed collisions and distinguish these events from more
common driving events, such as driving over speed
bumps or potholes. Independent tests showed the RAC
system to be 92% accurate in detecting test crashes.
Real-World Examples
Ready for a deeper dive? Explore these resources to learn more about
machine learning methods, examples, and tools.
Watch
Machine Learning Made Easy 34:34
Signal Processing and Machine Learning Techniques for Sensor Data Analytics 42:45
Read
Machine Learning Blog Posts: Social Network Analysis, Text Mining, Bayesian Reasoning, and more
The Netflix Prize and Production Machine Learning Systems: An Insider Look
Machine Learning Challenges: Choosing the Best Model and Avoiding Overfitting
Explore
MATLAB Machine Learning Examples
Machine Learning Solutions
Classify Data with the Classification Learner App
Learn More
© 2016 The MathWorks, Inc. MATLAB and Simulink are registered trademarks of The MathWorks, Inc. See mathworks.com/trademarks for a list of additional trademarks.
Other product or brand names may be trademarks or registered trademarks of their respective holders.
92991v00

Más contenido relacionado

Similar a machine_learning_section1_ebook.pdf

Supervised learning techniques and applications
Supervised learning techniques and applicationsSupervised learning techniques and applications
Supervised learning techniques and applicationsBenjaminlapid1
 
Supervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its applicationSupervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its applicationTara ram Goyal
 
Machine learning applications nurturing growth of various business domains
Machine learning applications nurturing growth of various business domainsMachine learning applications nurturing growth of various business domains
Machine learning applications nurturing growth of various business domainsShrutika Oswal
 
INTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptxINTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptxsrikanthkallem1
 
IRJET- Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...
IRJET-  	  Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...IRJET-  	  Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...
IRJET- Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...IRJET Journal
 
How to build machine learning apps.pdf
How to build machine learning apps.pdfHow to build machine learning apps.pdf
How to build machine learning apps.pdfJamieDornan2
 
Predictive Analytics - An Overview
Predictive Analytics - An OverviewPredictive Analytics - An Overview
Predictive Analytics - An OverviewMachinePulse
 
McKinsey Global Institute Big data The next frontier for innova.docx
McKinsey Global Institute Big data The next frontier for innova.docxMcKinsey Global Institute Big data The next frontier for innova.docx
McKinsey Global Institute Big data The next frontier for innova.docxandreecapon
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningIRJET Journal
 
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real LifeSimplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real LifePeea Bal Chakraborty
 
Emerging technologies enabling in fraud detection
Emerging technologies enabling in fraud detectionEmerging technologies enabling in fraud detection
Emerging technologies enabling in fraud detectionUmasree Raghunath
 
The role of NLP & ML in Cognitive System by Sunantha Krishnan
The role of NLP & ML in Cognitive System by Sunantha KrishnanThe role of NLP & ML in Cognitive System by Sunantha Krishnan
The role of NLP & ML in Cognitive System by Sunantha Krishnansunanthakrishnan
 
Summary artificial intelligence in practice- part-4
Summary  artificial intelligence in practice- part-4Summary  artificial intelligence in practice- part-4
Summary artificial intelligence in practice- part-4GMR Group
 

Similar a machine_learning_section1_ebook.pdf (20)

Machine learning
Machine learningMachine learning
Machine learning
 
Supervised learning techniques and applications
Supervised learning techniques and applicationsSupervised learning techniques and applications
Supervised learning techniques and applications
 
Supervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its applicationSupervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its application
 
Machine learning
Machine learningMachine learning
Machine learning
 
Machine learning applications nurturing growth of various business domains
Machine learning applications nurturing growth of various business domainsMachine learning applications nurturing growth of various business domains
Machine learning applications nurturing growth of various business domains
 
Intro 2 Machine Learning
Intro 2 Machine LearningIntro 2 Machine Learning
Intro 2 Machine Learning
 
Unit IV.pdf
Unit IV.pdfUnit IV.pdf
Unit IV.pdf
 
INTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptxINTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptx
 
How has ai changed manufacturing
How has ai changed manufacturingHow has ai changed manufacturing
How has ai changed manufacturing
 
IRJET- Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...
IRJET-  	  Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...IRJET-  	  Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...
IRJET- Improved Model for Big Data Analytics using Dynamic Multi-Swarm Op...
 
How to build machine learning apps.pdf
How to build machine learning apps.pdfHow to build machine learning apps.pdf
How to build machine learning apps.pdf
 
Predictive Analytics - An Overview
Predictive Analytics - An OverviewPredictive Analytics - An Overview
Predictive Analytics - An Overview
 
Predictive Analytics Overview
Predictive Analytics OverviewPredictive Analytics Overview
Predictive Analytics Overview
 
AI.pdf
AI.pdfAI.pdf
AI.pdf
 
McKinsey Global Institute Big data The next frontier for innova.docx
McKinsey Global Institute Big data The next frontier for innova.docxMcKinsey Global Institute Big data The next frontier for innova.docx
McKinsey Global Institute Big data The next frontier for innova.docx
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep Learning
 
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real LifeSimplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
 
Emerging technologies enabling in fraud detection
Emerging technologies enabling in fraud detectionEmerging technologies enabling in fraud detection
Emerging technologies enabling in fraud detection
 
The role of NLP & ML in Cognitive System by Sunantha Krishnan
The role of NLP & ML in Cognitive System by Sunantha KrishnanThe role of NLP & ML in Cognitive System by Sunantha Krishnan
The role of NLP & ML in Cognitive System by Sunantha Krishnan
 
Summary artificial intelligence in practice- part-4
Summary  artificial intelligence in practice- part-4Summary  artificial intelligence in practice- part-4
Summary artificial intelligence in practice- part-4
 

Último

Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Cizo Technology Services
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Natan Silnitsky
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...confluent
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfLivetecs LLC
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based projectAnoyGreter
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentationvaddepallysandeep122
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...OnePlan Solutions
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...OnePlan Solutions
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfIdiosysTechnologies1
 

Último (20)

Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
 
2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva2.pdf Ejercicios de programación competitiva
2.pdf Ejercicios de programación competitiva
 
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
Taming Distributed Systems: Key Insights from Wix's Large-Scale Experience - ...
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
Catch the Wave: SAP Event-Driven and Data Streaming for the Intelligence Ente...
 
Advantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your BusinessAdvantages of Odoo ERP 17 for Your Business
Advantages of Odoo ERP 17 for Your Business
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 
How to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdfHow to Track Employee Performance A Comprehensive Guide.pdf
How to Track Employee Performance A Comprehensive Guide.pdf
 
MYjobs Presentation Django-based project
MYjobs Presentation Django-based projectMYjobs Presentation Django-based project
MYjobs Presentation Django-based project
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentation
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
Maximizing Efficiency and Profitability with OnePlan’s Professional Service A...
 
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
Tech Tuesday - Mastering Time Management Unlock the Power of OnePlan's Timesh...
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 
Best Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdfBest Web Development Agency- Idiosys USA.pdf
Best Web Development Agency- Idiosys USA.pdf
 

machine_learning_section1_ebook.pdf

  • 2. Machine learning teaches computers to do what comes naturally to humans and animals: learn from experience. Machine learning algorithms use computational methods to “learn” information directly from data without relying on a predetermined equation as a model. The algorithms adaptively improve their performance as the number of samples available for learning increases. What is Machine Learning?
  • 3. Introducing Machine Learning 3 More Data, More Questions, Better Answers Machine learning algorithms find natural patterns in data that generate insight and help you make better decisions and predictions. They are used every day to make critical decisions in medical diagnosis, stock trading, energy load forecasting, and more. Media sites rely on machine learning to sift through millions of options to give you song or movie recommendations. Retailers use it to gain insight into their customers’ purchasing behavior. Real-World Applications With the rise in big data, machine learning has become particularly important for solving problems in areas like these: • Computational finance, for credit scoring and algorithmic trading • Image processing and computer vision, for face recognition, motion detection, and object detection • Computational biology, for tumor detection, drug discovery, and DNA sequencing • Energy production, for price and load forecasting • Automotive, aerospace, and manufacturing, for predictive maintenance • Natural language processing
  • 4. Introducing Machine Learning 4 How Machine Learning Works Machine learning uses two types of techniques: supervised learning, which trains a model on known input and output data so that it can predict future outputs, and unsupervised learning, which finds hidden patterns or intrinsic structures in input data. Group and interpret data based only on input data Develop predictive model based on both input and output data MACHINE LEARNING UNSUPERVISED LEARNING SUPERVISED LEARNING CLUSTERING CLASSIFICATION REGRESSION Machine Learning Techniques
  • 5. Introducing Machine Learning 5 Supervised Learning The aim of supervised machine learning is to build a model that makes predictions based on evidence in the presence of uncertainty. A supervised learning algorithm takes a known set of input data and known responses to the data (output) and trains a model to generate reasonable predictions for the response to new data. Supervised learning uses classification and regression techniques to develop predictive models. • Classification techniques predict discrete responses—for example, whether an email is genuine or spam, or whether a tumor is cancerous or benign. Classification models classify input data into categories. Typical applications include medical imaging, speech recognition, and credit scoring. • Regression techniques predict continuous responses— for example, changes in temperature or fluctuations in power demand. Typical applications include electricity load forecasting and algorithmic trading. Using Supervised Learning to Predict Heart Attacks Suppose clinicians want to predict whether someone will have a heart attack within a year. They have data on previous patients, including age, weight, height, and blood pressure. They know whether the previous patients had heart attacks within a year. So the problem is combining the existing data into a model that can predict whether a new person will have a heart attack within a year.
  • 6. Introducing Machine Learning 6 Unsupervised Learning Unsupervised learning finds hidden patterns or intrinsic structures in data. It is used to draw inferences from datasets consisting of input data without labeled responses. Clustering is the most common unsupervised learning technique. It is used for exploratory data analysis to find hidden patterns or groupings in data. Applications for clustering include gene sequence analysis, market research, and object recognition. Clustering Patterns in the Data
  • 7. Introducing Machine Learning 7 How Do You Decide Which Algorithm to Use? Choosing the right algorithm can seem overwhelming—there are dozens of supervised and unsupervised machine learning algorithms, and each takes a different approach to learning. There is no best method or one size fits all. Finding the right algorithm is partly just trial and error—even highly experienced data scientists can’t tell whether an algorithm will work without trying it out. But algorithm selection also depends on the size and type of data you’re working with, the insights you want to get from the data, and how those insights will be used. MACHINE LEARNING CLUSTERING CLASSIFICATION REGRESSION Support Vector Machines Discriminant Analysis Naive Bayes Nearest Neighbor Linear Regression, GLM SVR, GPR Ensemble Methods Decision Trees Neural Networks K-Means, K-Medoids Fuzzy C-Means Hierarchical Gaussian Mixture Neural Networks Hidden Markov Model UNSUPERVISED LEARNING SUPERVISED LEARNING Selecting an Algorithm
  • 8. Introducing Machine Learning 8 When Should You Use Machine Learning? Consider using machine learning when you have a complex task or problem involving a large amount of data and lots of variables, but no existing formula or equation. For example, machine learning is a good option if you need to handle situations like these: Hand-written rules and equations are too complex—as in face recognition and speech recognition. The rules of a task are constantly changing—as in fraud detection from transaction records. The nature of the data keeps changing, and the program needs to adapt—as in automated trading, energy demand forecasting, and predicting shopping trends.
  • 9. Introducing Machine Learning 9 Real-World Examples Creating Algorithms that Can Analyze Works of Art Researchers at the Art and Artificial Intelligence Laboratory at Rutgers University wanted to see whether a computer algorithm could classify paintings by style, genre, and artist as easily as a human. They began by identifying visual features for classifying a painting’s style. The algorithms they developed classified the styles of paintings in the database with 60% accuracy, outperforming typical non-expert humans. The researchers hypothesized that visual features useful for style classification (a supervised learning problem) could also be used to determine artistic influences (an unsupervised problem). They used classification algorithms trained on Google images to identify specific objects. They tested the algorithms on more than 1,700 paintings from 66 different artists working over a span of 550 years. The algorithm readily identified connected works, including the influence of Diego Velazquez’s “Portrait of Pope Innocent X” on Francis Bacon’s “Study After Velazquez’s Portrait of Pope Innocent X.”
  • 10. Introducing Machine Learning 10 Optimizing HVAC Energy Usage in Large Buildings The heating, ventilation, and air-conditioning (HVAC) systems in office buildings, hospitals, and other large- scale commercial buildings are often inefficient because they do not take into account changing weather patterns, variable energy costs, or the building’s thermal properties. Building IQ’s cloud-based software platform addresses this problem. The platform uses advanced algorithms and machine learning methods to continuously process gigabytes of information from power meters, thermometers, and HVAC pressure sensors, as well as weather and energy cost. In particular, machine learning is used to segment data and determine the relative contributions of gas, electric, steam, and solar power to heating and cooling processes. The building IQ platform reduces HVAC energy consumption in large- scale commercial buildings by 10% - 25% during normal operation. Real-World Examples
  • 11. Introducing Machine Learning 11 Detecting Low-Speed Car Crashes With more than 8 million members, the RAC is one of the UK’s largest motoring organizations, providing roadside assistance, insurance, and other services to private and business motorists. To enable rapid response to roadside incidents, reduce crashes, and mitigate insurance costs, the RAC developed an onboard crash sensing system that uses advanced machine learning algorithms to detect low- speed collisions and distinguish these events from more common driving events, such as driving over speed bumps or potholes. Independent tests showed the RAC system to be 92% accurate in detecting test crashes. Real-World Examples
  • 12. Ready for a deeper dive? Explore these resources to learn more about machine learning methods, examples, and tools. Watch Machine Learning Made Easy 34:34 Signal Processing and Machine Learning Techniques for Sensor Data Analytics 42:45 Read Machine Learning Blog Posts: Social Network Analysis, Text Mining, Bayesian Reasoning, and more The Netflix Prize and Production Machine Learning Systems: An Insider Look Machine Learning Challenges: Choosing the Best Model and Avoiding Overfitting Explore MATLAB Machine Learning Examples Machine Learning Solutions Classify Data with the Classification Learner App Learn More © 2016 The MathWorks, Inc. MATLAB and Simulink are registered trademarks of The MathWorks, Inc. See mathworks.com/trademarks for a list of additional trademarks. Other product or brand names may be trademarks or registered trademarks of their respective holders. 92991v00