SlideShare a Scribd company logo
1 of 42
Analytics, Data Science and A I: Systems for Decision Support
Eleventh Edition
Chapter 5
Machine-Learning Techniques for Predictive Analytics
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
Slide in this Presentation Contain Hyperlinks. JAWS users
should be able to get a list of links by using INSERT+F77
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
If this PowerPoint presentation contains mathematical
equations, you may need to check that your computer has the
following installed:
1) Math Type Plugin
2) Math Player (free versions available)
3) NVDA Reader (free versions available)
1
Learning Objectives (1 of 2)
5.1 Understand the basic concepts and definitions of artificial
neural networks (A N N)
5.2 Learn the different types of A N N architectures
5.3 Understand the concept and structure of support vector
machines (S V M)
5.4 Learn the advantages and disadvantages of S V M compared
to A N N
5.5 Understand the concept and formulation of k-nearest
neighbor (k N N) algorithm
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
Slide 2 is list of textbook LO numbers and statements
2
Learning Objectives (2 of 2)
5.6 Learn the advantages and disadvantages of k N N compared
to A N N and S V M
5.7 Understand the basic principles of Bayesian learning and
Naïve Bayes algorithm
5.8 Learn the basics of Bayesian Belief Networks and how they
are used in predictive analytics
5.9 Understand different types of ensemble models and their
pros and cons in predictive analytics
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
Slide 2 is list of textbook LO numbers and statements
3
Opening Vignette (1 of 4)
Predictive Modeling Helps Better Understand and Manage
Complex Medical Procedures
Situation
Problem
Solution
Results
Answer & discuss the case questions.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
4
Opening Vignette (2 of 4)
Discussion Questions for the Opening Vignette:
Why is it important to study medical procedures? What is the
value in predicting outcomes?
What factors do you think are the most important in better
understanding and managing healthcare?
What would be the impact of predictive modeling on healthcare
and medicine? Can predictive modeling replace medical or
managerial personnel?
What were the outcomes of the study? Who can use these
results? How can they be implemented?
Search the Internet to locate two additional cases in managing
complex medical procedures.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
5
Opening Vignette (3 of 4)
A Process Map for Training and Testing Four Predictive Models
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
6
Opening Vignette (4 of 4)
The Comparison of the Four Models
1Acronyms for model types: artificial neural networks (A N N),
support vector machines (S V M), popular decision tree
algorithm (C5), classification and regression trees (C A R T).
2Prediction results for the test data samples are shown in a
confusion matrix where the rows represent the actuals and
columns represent the predicted cases.
3Accuracy, sensitivity, and specificity are the three
performance measures that were used in comparing the four
prediction models.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
7
Neural Network Concepts
Neural networks (N N): a human brain metaphor for information
processing
Neural computing
Artificial neural network (A N N)
Many uses for A N N for
pattern recognition, forecasting, prediction, and classification
Many application areas
finance, marketing, manufacturing, operations, information
systems, and so on
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
8
Biological Neural Networks
Two interconnected brain cells (neurons)
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
9
Processing Information in A N N
A single neuron (processing element – P E) with inputs and
outputs
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
10
Biology
AnalogyBiologicalArtificialSomaNodeDendritesInputAxonOutp
utSynapseWeightSlowFastMany neurons (109) Few neurons (a
dozen to hundreds of thousands)
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
11
Elements of A N N
Processing element (P E)
Network architecture
Hidden layers
Parallel processing
Network information processing
Inputs
Outputs
Connection weights
Summation function
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
12
Application Case 5.1
Neural Networks Are Helping to Save Lives in the Mining
Industry
Questions for Discussion:
How did neural networks help save lives in the mining industry?
What were the challenges, the proposed solution, and the
obtained results?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
13
Neural Network Architectures
Architecture of a neural network is driven by the task it is
intended to address
Classification, regression, clustering, general optimization,
association
Feedforward, multi-layered perceptron with backpropagation
learning algorithm
Most popular architecture:
This A N N architecture will be covered in Chapter 6
Other A N N Architectures – Recurrent, self-organizing feature
maps, hopfield networks, …
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
14
Neural Network Architectures
Recurrent Neural Networks
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
15
Other Popular A N N Paradigms Self Organizing Maps (S O M)
First introduced by the Finnish Professor Teuvo Kohonen
Applies to clustering type problems
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
16
Other Popular A N N Paradigms
Hopfield Networks
First introduced by John Hopfield
Highly interconnected neurons
Applies to solving complex computational problems (e.g.,
optimization problems)
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
17
Application Case 5.2
Predictive Modeling Is Powering the Power Generators
Questions for Discussion:
What are the key environmental concerns in the electric power
industry?
What are the main application areas for predictive modeling in
the electric power industry?
How was predictive modeling used to address a variety of
problems in the electric power industry?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
18
Support Vector Machines (S V M) (1 of 4)
S V M are among the most popular machine-learning
techniques.
S V M belong to the family of generalized linear models…
(capable of representing non-linear relationships in a linear
fashion)
S V M achieve a classification or regression decision based on
the value of the linear combination of input features.
Because of their architectural similarities, S V M are also
closely associated with A N N.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
19
Support Vector Machines (S V M) (2 of 4)
Goal of S V M: to generate mathematical functions that map
input variables to desired outputs for classification or
regression type prediction problems.
First, S V M uses nonlinear kernel functions to transform non-
linear relationships among the variables into linearly separable
feature spaces.
Then, the maximum-margin hyperplanes are constructed to
optimally separate different classes from each other based on
the training dataset.
S V M has solid mathematical foundation!
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
20
Support Vector Machines (S V M) (3 of 4)
A hyperplane is a geometric concept used to describe the
separation surface between different classes of things.
In S V M, two parallel hyperplanes are constructed on each side
of the separation space with the aim of maximizing the distance
between them.
A kernel function in S V M uses the kernel trick (a method for
using a linear classifier algorithm to solve a nonlinear problem)
The most commonly used kernel function is the radial basis
function (R B F).
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
21
Support Vector Machines (S V M) (4 of 4)
Many linear classifiers (hyperplanes) may separate the data
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
22
Application Case 5.3 (1 of 4)
Identifying Injury Severity Risk Factors in Vehicle Crashes
with Predictive Analytics
Figure 5.7 Data Acquisition/Merging/Preparation Process.
Problem
Method
Results
Conclutions
Source: Microsoft Excel 2010, Microsoft Corporation.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
23
Application Case 5.3 (2 of 4)
Identifying Injury Severity Risk Factors in Vehicle Crashes
with Predictive Analytics
Key success factors:
Data acquisition
Data Preparation
1For numeric variables: mean (st. dev.); for binary or nominal
variables: % frequency of the top two classes.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
24
Application Case 5.3 (3 of 4)
Identifying Injury Severity Risk Factors in Vehicle Crashes
with Predictive Analytics
Accuracy
Variable importance
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
25
Application Case 5.3 (4 of 4)
Identifying Injury Severity Risk Factors in Vehicle Crashes
with Predictive Analytics
Questions for Discussion:
What are the key environmental concerns in the electric power
industry?
What are the main application areas for predictive modeling in
the electric power industry?
How was predictive modeling used to address a variety of
problems in the electric power industry?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
26
How Does a S V M Works?
Following a machine-learning process, a S V M learns from the
historic cases.
The Process of Building S V M
1. Preprocess the data
Scrub and transform the data.
2. Develop the model.
Select the kernel type (R B F is often a natural choice).
Determine the kernel parameters for the selected kernel type.
If the results are satisfactory, finalize the model, otherwise
change the kernel type and/or kernel parameters to achieve the
desired accuracy level.
3. Extract and deploy the model.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
27
The Process of Building a S V M
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
28
S V M Applications
S V M are the most widely used kernel-learning algorithms for
wide range of classification and regression problems
S V M represent the state-of-the-art by virtue of their excellent
generalization performance, superior prediction power, ease of
use, and rigorous theoretical foundation
Most comparative studies show its superiority in both
regression and classification type prediction problems.
S V M versus A N N?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
29
k-Nearest Neighbor Method (k-N N) (1 of 2)
-demanding, computationally
intensive iterative derivations
k-N N a simplistic and logical prediction method, that produces
very competitive results
k-N N is a prediction method for classification as well as
regression types (similar to A N N & S V M)
k-N N is a type of instance-based learning (or lazy learning) –
most of the work takes place at the time of prediction (not at
modeling)
k : the number of neighbors used in the model
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
30
k-Nearest Neighbor Method (k-N N) (2 of 2)
The answer to “which class a data point belongs to?” depends
on the value of k
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
31
The Process of k-N N Method
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
32
k-N N Model Parameter (1 of 2)
Similarity Measure: The Distance Metric
Numeric versus nominal values?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
33
k-N N Model Parameter (2 of 2)
Number of Neighbors (the value of k)
The best value depends on the data
Larger values reduces the effect of noise but also make
boundaries between classes less distinct
An “optimal” value can be found heuristically
Cross Validation is often used to determine the best value for k
and the distance measure
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
34
Application Case 5.4
Efficient Image Recognition and Categorization with k N N
Questions for Discussion:
Why is image recognition/classification a worthy but difficult
problem?
How can k N N be effectively used for image
recognition/classification applications?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
35
Naïve Bayes Method for Classification (1 of 2)
Naïve Bayes is a simple probability-based classification method
Naïve - assumption of independence among the input variables
Can use both numeric and nominal input variables
Numeric variables need to be discretized
Can be used for both regression and classification
Naïve based models can be developed very efficiently and
effectively
Using maximum likelihood method
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
36
Bayes Theorem
Developed by Thomas Bayes (1701–1761)
Determines the conditional probabilities
Given that X and Y are two events:
Go trough the simple example in the book (p. 279)
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
37
Naïve Bayes Method for Classification (2 of 2)
Process of Developing a Naïve Bayes Classifier
Training Phase
Obtain and pre-process the data
Discretize the numeric variables
Calculate the prior probabilities of all class labels
Calculate the likelihood for all predictor variables/values
Testing Phase
Using the outputs of Steps 3 and 4 above, classify the new
samples
See the numerical example in the book…
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
38
Application Case 5.5 (1 of 2)
Predicting Disease Progress in Crohn’s Disease Patients: A
Comparison of Analytics Methods
Questions for Discussion:
What is Crohn’s disease and why is it important?
Based on the findings of this Application Case, what can you
tell about the use of analytics in chronic disease management?
What other methods and data sets might be used to better
predict the outcomes of this chronic disease?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
39
Application Case 5.5 (2 of 2)
Predicting Disease Progress in Crohn’s Disease Patients: A
Comparison of Analytics Methods
Methodology
Prediction Accuracy
Variable Importance
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
40
Bayesian Networks (1 of 5)
A tool for representing dependency structure in a graphical,
explicit, and intuitive way
A directed acyclic graph whose nodes correspond to the
variables and arcs that signify conditional dependencies
between variables and their possible values
Direction of the arc matter
A partial causality link in student retention
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
41
Bayesian Networks (2 of 5)
How can B N be constructed?
Manually
By an engineer with the help of a domain expert
Time demanding, expensive (for large networks)
Experts may not even be available
Automatically
Analytically …
By learning/inducing the structure of the network from the
historical data
Availability high-quality historical data is imperative
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
42
Bayesian Networks (3 of 5)
How can B N be constructed?
Analytically
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
43
Bayesian Networks (4 of 5)
How can B N be constructed?
Tree Augmented Naïve Bayes Network Structure
Compute information function
Build the undirected graph
Build a spanning tree
Convert the undirected graph into
a directed one
Construct a T A N model
Tree Augmented Naïve (T A N) Bayes Network Structure
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
44
Bayesian Networks (5 of 5)
EXAMPLE: Bayesian Belief Network for Predicting Freshmen
Student Attrition
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
45
Ensemble Modeling (1 of 3)
Ensemble – combination of models (or model outcomes) for
better results
Why do we need to use ensembles:
Better accuracy
More stable/robust/consistent/reliable outcomes
Reality: ensembles wins competitions!
Netflix $1M Prise completion
Many recent competitions at Kaggle.com
The Wisdom of Crowds
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
46
Ensemble Modeling (2 of 3)
Figure 5.19 Graphical Depiction of Model Ensembles for
Prediction Modeling.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
47
Types of Ensemble Modeling (1 of 4)
Figure 5.20 Simple Taxonomy for Model Ensembles.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
48
Types of Ensemble Modeling (2 of 4)
Figure 5.20 Bagging-Type Decision Tree Ensembles.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
49
Types of Ensemble Modeling (3 of 4)
Figure 5.20 Boosting-Type Decision Tree Ensembles.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
50
Ensemble Modeling (3 of 3)
Variants of Bagging & Boosting (Decision Trees)
Decision Trees Ensembles
Random Forest
Stochastic Gradient Boosting
Stacking
Stack generation or super learners
Information Fusion
Any number of any models
Simple/weighted combining
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
51
Types of Ensemble Modeling (4 of 4)
STACKING
INFORMATION FUSION
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
52
Ensembles – Pros and Cons
Table 5.9 Brief List of Pros and Cons of Model Ensembles
Compared to Individual Models.PROS (Advantages)Description
AccuracyModel ensembles usually result in more accurate
models than individual models. RobustnessModel ensembles
tend to be more robust against outliers and noise in the data set
than individual models. Reliability (stable)Because of the
variance reduction, model ensembles tend to produce more
stable, reliable, and believable results than individual
models.CoverageModel ensembles tend to have a better
coverage of the hidden complex patterns in the data set than
individual models.CONS
(Shortcomings)DescriptionComplexityModel ensembles are
much more complex than individual models.Computationally
expensiveCompared to individual models, ensembles require
more time and computational power to build. Lack of
transparency (explainability)Because of their complexity, it is
more difficult to understand the inner structure of model
ensembles (how they do what they do) than individual models.
Harder to deployModel ensembles are much more difficult to
deploy in an analytics-based Managerial decision-support
system than single models.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
53
Application Case 5.6 (1 of 3)
To Imprison or Not to Imprison: A Predictive Analytics-Based
D S S for Drug Courts
Questions for Discussion:
What are drug courts and what do they do for the society?
What are the commonalities and differences between traditional
(theoretical) and modern (machine-learning) base methods in
studying drug courts?
Can you think of other social situations and systems for which
predictive analytics can be used?
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
54
Application Case 5.6 (2 of 3)
To Imprison or Not to Imprison: A Predictive Analytics-Based
D S S for Drug Courts
Methodology
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
55
Application Case 5.6 (3 of 3)
To Imprison or Not to Imprison: A Predictive Analytics-Based
D S S for Drug Courts
Prediction Accuracy
A N N: artificial neural networks; D T: decision trees; L R:
logistic regression; R F: random forest; H E: heterogeneous
ensemble; A U C: area under the curve; G: graduated; T:
terminated
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
56
End of Chapter 5
Questions / Comments
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
57
Copyright
This work is protected by United States copyright laws and is
provided solely for the use of instructors in teaching their
courses and assessing student learning. Dissemination or sale of
any part of this work (including on the World Wide Web) will
destroy the integrity of the work and is not permitted. The work
and materials from it should never be made available to students
except by instructors using the accompanying text in their
classes. All recipients of this work are expected to abide by
these restrictions and to honor the intended pedagogical
purposes and the needs of other instructors who rely on these
materials.
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
1122
1122
22
1122
Minkowskidistance
() =(...)
If 1,theniscalledManhattendistance
()...
If 2,theniscalledEuclideandistance
() =(
qqq
q
ijijipjp
ijijipjp
ijijip
di,jxxxxxx
qd
di,j=xxxxxx
qd
di,jxxxxx
-+-++-
=
-+-++-
=
-+-++-
K
2
)
jp
x
(|)()
(|)
()
(|):
(|):()
():
():(
PXYPYLikelihoodPrior
PYXPosterior
PXEvidence
PYXPosteriorprobabilityofYgivenX
PXYConditionalprobabilityofXgivenYlikeli
hood
PYPriorprobabilityofY
PXPriorprobabilityofXevidence,
*
=®=
)
orunconditionalprobabilityofX
(
)
Homogeneous
model types
decision trees
ì
ï
í
ï
î
(
)
Homogeneous
model types
decision trees
ì
ï
í
ï
î
.MsftOfcThm_Text1_Fill {
fill:#000000;
}
.MsftOfcThm_MainDark1_Stroke {
stroke:#000000;
}
Analytics, Data Science and A I: Systems for Decision Support
Eleventh Edition
Chapter 6
Deep Learning and Cognitive Computing
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
Slide in this Presentation Contain Hyperlinks. JAWS users
should be able to get a list of links by using INSERT+F7
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
If this PowerPoint presentation contains mathematical
equations, you may need to check that your computer has the
following installed:
1) Math Type Plugin
2) Math Player (free versions available)
3) NVDA Reader (free versions available)
1
Learning Objectives (1 of 2)
6.1 Learn what deep learning is and how it is changing the
world of computing
6.2 Know the placement of deep learning within the broad
family of A I learning methods
6.3 Understand how traditional “shallow” artificial neural
networks (A N N) work
6.4 Become familiar with the development and learning
processes of A N N
6.5 Develop an understanding of the methods to shed light into
the A N N black box
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
Slide 2 is list of textbook LO numbers and statements
2
Learning Objectives (2 of 2)
6.6 Know the underlying concept and methods for deep neural
networks
6.7 Become familiar with different types of deep learning
methods
6.8 Understand how convolutional neural networks (C N N),
recurrent neural networks (R N N), and long short-memory
networks (L S T M) work
6.9 Become familiar with the computer frameworks for
implementing deep learning
6.10 Know the foundational details about cognitive Computing
and I B M Watson
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
Slide 2 is list of textbook LO numbers and statements
3
Opening Vignette (1 of 4)
Fighting Fraud with Deep Learning and Artificial Intelligence
Business problem
Danske Bank
Predictive analytics in banking
Fraud detection
The solution
Deep learning
The results
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
4
Opening Vignette (2 of 4)
Fighting Fraud with Deep Learning and Artificial Intelligence
Accuracy
R O C curve
D L vs traditional M L techniques
Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
Rights Reserved
5
Opening Vignette (3 of 4)
Fighting Fraud with Deep Learning and Artificial Intelligence
A Generalized Framework for A I and Deep Learning–Based
Analytics
Analytics, Data Science and A I Systems for Decision SupportE.docx

More Related Content

Similar to Analytics, Data Science and A I Systems for Decision SupportE.docx

introduction to machine learning cemp.ppt
introduction to machine learning cemp.pptintroduction to machine learning cemp.ppt
introduction to machine learning cemp.pptcojat44069
 
i2ml-chap1-v1-1.ppt
i2ml-chap1-v1-1.ppti2ml-chap1-v1-1.ppt
i2ml-chap1-v1-1.pptssusera4cc92
 
i2ml-chap1-v1-1 (3).ppt
i2ml-chap1-v1-1 (3).ppti2ml-chap1-v1-1 (3).ppt
i2ml-chap1-v1-1 (3).pptatul404633
 
grace presentation power point presentation
grace presentation power point presentationgrace presentation power point presentation
grace presentation power point presentationsrajece
 
IRJET - Fake News Detection using Machine Learning
IRJET -  	  Fake News Detection using Machine LearningIRJET -  	  Fake News Detection using Machine Learning
IRJET - Fake News Detection using Machine LearningIRJET Journal
 
IRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet ArchitectureIRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet ArchitectureIRJET Journal
 
Threat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLPThreat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLPIRJET Journal
 
Machine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And ApplicationsMachine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And ApplicationsSlideTeam
 
IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...
IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...
IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...IRJET Journal
 
Machine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And ApplicationsMachine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And ApplicationsSlideTeam
 
A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...
A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...
A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...IOSR Journals
 
IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...
IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...
IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...IRJET Journal
 
Introduction to Systems Analysis and Design
Introduction to Systems Analysis and DesignIntroduction to Systems Analysis and Design
Introduction to Systems Analysis and DesignNikRHassan1
 
Quantitative Analysis for ManagementThirteenth EditionLesson.docx
Quantitative Analysis for ManagementThirteenth EditionLesson.docxQuantitative Analysis for ManagementThirteenth EditionLesson.docx
Quantitative Analysis for ManagementThirteenth EditionLesson.docxhildredzr1di
 
Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...
Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...
Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...Association for Computational Linguistics
 
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxRunning head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxhealdkathaleen
 
Neural Net: Machine Learning Web Application
Neural Net: Machine Learning Web ApplicationNeural Net: Machine Learning Web Application
Neural Net: Machine Learning Web ApplicationIRJET Journal
 
Ai open powermeetupmarch25th
Ai open powermeetupmarch25thAi open powermeetupmarch25th
Ai open powermeetupmarch25thIBM
 
Ai open powermeetupmarch25th
Ai open powermeetupmarch25thAi open powermeetupmarch25th
Ai open powermeetupmarch25thIBM
 

Similar to Analytics, Data Science and A I Systems for Decision SupportE.docx (20)

i2ml-chap1-v1-1.ppt
i2ml-chap1-v1-1.ppti2ml-chap1-v1-1.ppt
i2ml-chap1-v1-1.ppt
 
introduction to machine learning cemp.ppt
introduction to machine learning cemp.pptintroduction to machine learning cemp.ppt
introduction to machine learning cemp.ppt
 
i2ml-chap1-v1-1.ppt
i2ml-chap1-v1-1.ppti2ml-chap1-v1-1.ppt
i2ml-chap1-v1-1.ppt
 
i2ml-chap1-v1-1 (3).ppt
i2ml-chap1-v1-1 (3).ppti2ml-chap1-v1-1 (3).ppt
i2ml-chap1-v1-1 (3).ppt
 
grace presentation power point presentation
grace presentation power point presentationgrace presentation power point presentation
grace presentation power point presentation
 
IRJET - Fake News Detection using Machine Learning
IRJET -  	  Fake News Detection using Machine LearningIRJET -  	  Fake News Detection using Machine Learning
IRJET - Fake News Detection using Machine Learning
 
IRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet ArchitectureIRJET - Gender and Age Prediction using Wideresnet Architecture
IRJET - Gender and Age Prediction using Wideresnet Architecture
 
Threat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLPThreat Detection System Using Data-science and NLP
Threat Detection System Using Data-science and NLP
 
Machine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And ApplicationsMachine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And Applications
 
IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...
IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...
IRJET - Comparative Analysis of GUI based Prediction of Parkinson Disease usi...
 
Machine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And ApplicationsMachine Learning Ml Overview Algorithms Use Cases And Applications
Machine Learning Ml Overview Algorithms Use Cases And Applications
 
A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...
A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...
A Synopsis of Simulation and Mobility Modeling in Vehicular Ad-hoc Networks (...
 
IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...
IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...
IRJET - Multi-Label Road Scene Prediction for Autonomous Vehicles using Deep ...
 
Introduction to Systems Analysis and Design
Introduction to Systems Analysis and DesignIntroduction to Systems Analysis and Design
Introduction to Systems Analysis and Design
 
Quantitative Analysis for ManagementThirteenth EditionLesson.docx
Quantitative Analysis for ManagementThirteenth EditionLesson.docxQuantitative Analysis for ManagementThirteenth EditionLesson.docx
Quantitative Analysis for ManagementThirteenth EditionLesson.docx
 
Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...
Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...
Daniel Preotiuc-Pietro - 2015 - An analysis of the user occupational class th...
 
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docxRunning head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
Running head CASE STUDY QUESTIONS 1CASE STUDY QUESTIONS7.docx
 
Neural Net: Machine Learning Web Application
Neural Net: Machine Learning Web ApplicationNeural Net: Machine Learning Web Application
Neural Net: Machine Learning Web Application
 
Ai open powermeetupmarch25th
Ai open powermeetupmarch25thAi open powermeetupmarch25th
Ai open powermeetupmarch25th
 
Ai open powermeetupmarch25th
Ai open powermeetupmarch25thAi open powermeetupmarch25th
Ai open powermeetupmarch25th
 

More from SHIVA101531

Answer the following questions in a minimum of 1-2 paragraphs ea.docx
Answer the following questions in a minimum of 1-2 paragraphs ea.docxAnswer the following questions in a minimum of 1-2 paragraphs ea.docx
Answer the following questions in a minimum of 1-2 paragraphs ea.docxSHIVA101531
 
Answer the following questions using scholarly sources as references.docx
Answer the following questions using scholarly sources as references.docxAnswer the following questions using scholarly sources as references.docx
Answer the following questions using scholarly sources as references.docxSHIVA101531
 
Answer the following questions about this case studyClient .docx
Answer the following questions about this case studyClient .docxAnswer the following questions about this case studyClient .docx
Answer the following questions about this case studyClient .docxSHIVA101531
 
Answer the following questions using art vocabulary and ideas from L.docx
Answer the following questions using art vocabulary and ideas from L.docxAnswer the following questions using art vocabulary and ideas from L.docx
Answer the following questions using art vocabulary and ideas from L.docxSHIVA101531
 
Answer the following questions in a total of 3 pages (900 words). My.docx
Answer the following questions in a total of 3 pages (900 words). My.docxAnswer the following questions in a total of 3 pages (900 words). My.docx
Answer the following questions in a total of 3 pages (900 words). My.docxSHIVA101531
 
Answer the following questions No single word responses (at lea.docx
Answer the following questions No single word responses (at lea.docxAnswer the following questions No single word responses (at lea.docx
Answer the following questions No single word responses (at lea.docxSHIVA101531
 
Answer the following questions based on the ethnography Dancing Skel.docx
Answer the following questions based on the ethnography Dancing Skel.docxAnswer the following questions based on the ethnography Dancing Skel.docx
Answer the following questions based on the ethnography Dancing Skel.docxSHIVA101531
 
Answer the following questions to the best of your ability1) De.docx
Answer the following questions to the best of your ability1) De.docxAnswer the following questions to the best of your ability1) De.docx
Answer the following questions to the best of your ability1) De.docxSHIVA101531
 
Answer the following questionDo you think it is necessary to .docx
Answer the following questionDo you think it is necessary to .docxAnswer the following questionDo you think it is necessary to .docx
Answer the following questionDo you think it is necessary to .docxSHIVA101531
 
Answer the following question. Use facts and examples to support.docx
Answer the following question. Use facts and examples to support.docxAnswer the following question. Use facts and examples to support.docx
Answer the following question. Use facts and examples to support.docxSHIVA101531
 
Answer the bottom questions  in apa format and decent answer no shor.docx
Answer the bottom questions  in apa format and decent answer no shor.docxAnswer the bottom questions  in apa format and decent answer no shor.docx
Answer the bottom questions  in apa format and decent answer no shor.docxSHIVA101531
 
Answer the following below using the EXCEL attachment. chapter 5.docx
Answer the following below using the EXCEL attachment. chapter 5.docxAnswer the following below using the EXCEL attachment. chapter 5.docx
Answer the following below using the EXCEL attachment. chapter 5.docxSHIVA101531
 
Answer the following prompts about A Germanic People Create a Code .docx
Answer the following prompts about A Germanic People Create a Code .docxAnswer the following prompts about A Germanic People Create a Code .docx
Answer the following prompts about A Germanic People Create a Code .docxSHIVA101531
 
Answer the following discussion board question below minumun 25.docx
Answer the following discussion board question below minumun 25.docxAnswer the following discussion board question below minumun 25.docx
Answer the following discussion board question below minumun 25.docxSHIVA101531
 
Answer the following questions about IT Project Management. What.docx
Answer the following questions about IT Project Management. What.docxAnswer the following questions about IT Project Management. What.docx
Answer the following questions about IT Project Management. What.docxSHIVA101531
 
Answer the following in at least 100 words minimum each1.Of.docx
Answer the following in at least 100 words minimum each1.Of.docxAnswer the following in at least 100 words minimum each1.Of.docx
Answer the following in at least 100 words minimum each1.Of.docxSHIVA101531
 
Answer the following questions(at least 200 words) and responses 2 p.docx
Answer the following questions(at least 200 words) and responses 2 p.docxAnswer the following questions(at least 200 words) and responses 2 p.docx
Answer the following questions(at least 200 words) and responses 2 p.docxSHIVA101531
 
Answer the following questions in a Word document and upload it by M.docx
Answer the following questions in a Word document and upload it by M.docxAnswer the following questions in a Word document and upload it by M.docx
Answer the following questions in a Word document and upload it by M.docxSHIVA101531
 
Answer the following questions in complete sentences. Each answer sh.docx
Answer the following questions in complete sentences. Each answer sh.docxAnswer the following questions in complete sentences. Each answer sh.docx
Answer the following questions in complete sentences. Each answer sh.docxSHIVA101531
 
ANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docx
ANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docxANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docx
ANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docxSHIVA101531
 

More from SHIVA101531 (20)

Answer the following questions in a minimum of 1-2 paragraphs ea.docx
Answer the following questions in a minimum of 1-2 paragraphs ea.docxAnswer the following questions in a minimum of 1-2 paragraphs ea.docx
Answer the following questions in a minimum of 1-2 paragraphs ea.docx
 
Answer the following questions using scholarly sources as references.docx
Answer the following questions using scholarly sources as references.docxAnswer the following questions using scholarly sources as references.docx
Answer the following questions using scholarly sources as references.docx
 
Answer the following questions about this case studyClient .docx
Answer the following questions about this case studyClient .docxAnswer the following questions about this case studyClient .docx
Answer the following questions about this case studyClient .docx
 
Answer the following questions using art vocabulary and ideas from L.docx
Answer the following questions using art vocabulary and ideas from L.docxAnswer the following questions using art vocabulary and ideas from L.docx
Answer the following questions using art vocabulary and ideas from L.docx
 
Answer the following questions in a total of 3 pages (900 words). My.docx
Answer the following questions in a total of 3 pages (900 words). My.docxAnswer the following questions in a total of 3 pages (900 words). My.docx
Answer the following questions in a total of 3 pages (900 words). My.docx
 
Answer the following questions No single word responses (at lea.docx
Answer the following questions No single word responses (at lea.docxAnswer the following questions No single word responses (at lea.docx
Answer the following questions No single word responses (at lea.docx
 
Answer the following questions based on the ethnography Dancing Skel.docx
Answer the following questions based on the ethnography Dancing Skel.docxAnswer the following questions based on the ethnography Dancing Skel.docx
Answer the following questions based on the ethnography Dancing Skel.docx
 
Answer the following questions to the best of your ability1) De.docx
Answer the following questions to the best of your ability1) De.docxAnswer the following questions to the best of your ability1) De.docx
Answer the following questions to the best of your ability1) De.docx
 
Answer the following questionDo you think it is necessary to .docx
Answer the following questionDo you think it is necessary to .docxAnswer the following questionDo you think it is necessary to .docx
Answer the following questionDo you think it is necessary to .docx
 
Answer the following question. Use facts and examples to support.docx
Answer the following question. Use facts and examples to support.docxAnswer the following question. Use facts and examples to support.docx
Answer the following question. Use facts and examples to support.docx
 
Answer the bottom questions  in apa format and decent answer no shor.docx
Answer the bottom questions  in apa format and decent answer no shor.docxAnswer the bottom questions  in apa format and decent answer no shor.docx
Answer the bottom questions  in apa format and decent answer no shor.docx
 
Answer the following below using the EXCEL attachment. chapter 5.docx
Answer the following below using the EXCEL attachment. chapter 5.docxAnswer the following below using the EXCEL attachment. chapter 5.docx
Answer the following below using the EXCEL attachment. chapter 5.docx
 
Answer the following prompts about A Germanic People Create a Code .docx
Answer the following prompts about A Germanic People Create a Code .docxAnswer the following prompts about A Germanic People Create a Code .docx
Answer the following prompts about A Germanic People Create a Code .docx
 
Answer the following discussion board question below minumun 25.docx
Answer the following discussion board question below minumun 25.docxAnswer the following discussion board question below minumun 25.docx
Answer the following discussion board question below minumun 25.docx
 
Answer the following questions about IT Project Management. What.docx
Answer the following questions about IT Project Management. What.docxAnswer the following questions about IT Project Management. What.docx
Answer the following questions about IT Project Management. What.docx
 
Answer the following in at least 100 words minimum each1.Of.docx
Answer the following in at least 100 words minimum each1.Of.docxAnswer the following in at least 100 words minimum each1.Of.docx
Answer the following in at least 100 words minimum each1.Of.docx
 
Answer the following questions(at least 200 words) and responses 2 p.docx
Answer the following questions(at least 200 words) and responses 2 p.docxAnswer the following questions(at least 200 words) and responses 2 p.docx
Answer the following questions(at least 200 words) and responses 2 p.docx
 
Answer the following questions in a Word document and upload it by M.docx
Answer the following questions in a Word document and upload it by M.docxAnswer the following questions in a Word document and upload it by M.docx
Answer the following questions in a Word document and upload it by M.docx
 
Answer the following questions in complete sentences. Each answer sh.docx
Answer the following questions in complete sentences. Each answer sh.docxAnswer the following questions in complete sentences. Each answer sh.docx
Answer the following questions in complete sentences. Each answer sh.docx
 
ANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docx
ANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docxANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docx
ANSWER THE DISCUSSION QUESTION 250 WORDS MINDiscussion Q.docx
 

Recently uploaded

Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 

Recently uploaded (20)

Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 

Analytics, Data Science and A I Systems for Decision SupportE.docx

  • 1. Analytics, Data Science and A I: Systems for Decision Support Eleventh Edition Chapter 5 Machine-Learning Techniques for Predictive Analytics Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved Slide in this Presentation Contain Hyperlinks. JAWS users should be able to get a list of links by using INSERT+F77 Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved If this PowerPoint presentation contains mathematical equations, you may need to check that your computer has the following installed: 1) Math Type Plugin 2) Math Player (free versions available) 3) NVDA Reader (free versions available) 1 Learning Objectives (1 of 2) 5.1 Understand the basic concepts and definitions of artificial neural networks (A N N) 5.2 Learn the different types of A N N architectures 5.3 Understand the concept and structure of support vector machines (S V M) 5.4 Learn the advantages and disadvantages of S V M compared to A N N 5.5 Understand the concept and formulation of k-nearest neighbor (k N N) algorithm Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
  • 2. Rights Reserved Slide 2 is list of textbook LO numbers and statements 2 Learning Objectives (2 of 2) 5.6 Learn the advantages and disadvantages of k N N compared to A N N and S V M 5.7 Understand the basic principles of Bayesian learning and Naïve Bayes algorithm 5.8 Learn the basics of Bayesian Belief Networks and how they are used in predictive analytics 5.9 Understand different types of ensemble models and their pros and cons in predictive analytics Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved Slide 2 is list of textbook LO numbers and statements 3 Opening Vignette (1 of 4) Predictive Modeling Helps Better Understand and Manage Complex Medical Procedures Situation Problem Solution Results
  • 3. Answer & discuss the case questions. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 4 Opening Vignette (2 of 4) Discussion Questions for the Opening Vignette: Why is it important to study medical procedures? What is the value in predicting outcomes? What factors do you think are the most important in better understanding and managing healthcare? What would be the impact of predictive modeling on healthcare and medicine? Can predictive modeling replace medical or managerial personnel? What were the outcomes of the study? Who can use these results? How can they be implemented? Search the Internet to locate two additional cases in managing complex medical procedures. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 4. 5 Opening Vignette (3 of 4) A Process Map for Training and Testing Four Predictive Models Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 6 Opening Vignette (4 of 4) The Comparison of the Four Models 1Acronyms for model types: artificial neural networks (A N N), support vector machines (S V M), popular decision tree algorithm (C5), classification and regression trees (C A R T). 2Prediction results for the test data samples are shown in a confusion matrix where the rows represent the actuals and columns represent the predicted cases. 3Accuracy, sensitivity, and specificity are the three performance measures that were used in comparing the four prediction models.
  • 5. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 7 Neural Network Concepts Neural networks (N N): a human brain metaphor for information processing Neural computing Artificial neural network (A N N) Many uses for A N N for pattern recognition, forecasting, prediction, and classification Many application areas finance, marketing, manufacturing, operations, information systems, and so on Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 8 Biological Neural Networks
  • 6. Two interconnected brain cells (neurons) Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 9 Processing Information in A N N A single neuron (processing element – P E) with inputs and outputs Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 10 Biology AnalogyBiologicalArtificialSomaNodeDendritesInputAxonOutp utSynapseWeightSlowFastMany neurons (109) Few neurons (a dozen to hundreds of thousands)
  • 7. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 11 Elements of A N N Processing element (P E) Network architecture Hidden layers Parallel processing Network information processing Inputs Outputs Connection weights Summation function Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 12 Application Case 5.1 Neural Networks Are Helping to Save Lives in the Mining
  • 8. Industry Questions for Discussion: How did neural networks help save lives in the mining industry? What were the challenges, the proposed solution, and the obtained results? Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 13 Neural Network Architectures Architecture of a neural network is driven by the task it is intended to address Classification, regression, clustering, general optimization, association Feedforward, multi-layered perceptron with backpropagation learning algorithm Most popular architecture: This A N N architecture will be covered in Chapter 6 Other A N N Architectures – Recurrent, self-organizing feature maps, hopfield networks, …
  • 9. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 14 Neural Network Architectures Recurrent Neural Networks Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 15 Other Popular A N N Paradigms Self Organizing Maps (S O M) First introduced by the Finnish Professor Teuvo Kohonen Applies to clustering type problems Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 10. 16 Other Popular A N N Paradigms Hopfield Networks First introduced by John Hopfield Highly interconnected neurons Applies to solving complex computational problems (e.g., optimization problems) Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 17 Application Case 5.2 Predictive Modeling Is Powering the Power Generators Questions for Discussion: What are the key environmental concerns in the electric power industry? What are the main application areas for predictive modeling in the electric power industry? How was predictive modeling used to address a variety of problems in the electric power industry?
  • 11. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 18 Support Vector Machines (S V M) (1 of 4) S V M are among the most popular machine-learning techniques. S V M belong to the family of generalized linear models… (capable of representing non-linear relationships in a linear fashion) S V M achieve a classification or regression decision based on the value of the linear combination of input features. Because of their architectural similarities, S V M are also closely associated with A N N. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 19 Support Vector Machines (S V M) (2 of 4)
  • 12. Goal of S V M: to generate mathematical functions that map input variables to desired outputs for classification or regression type prediction problems. First, S V M uses nonlinear kernel functions to transform non- linear relationships among the variables into linearly separable feature spaces. Then, the maximum-margin hyperplanes are constructed to optimally separate different classes from each other based on the training dataset. S V M has solid mathematical foundation! Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 20 Support Vector Machines (S V M) (3 of 4) A hyperplane is a geometric concept used to describe the separation surface between different classes of things. In S V M, two parallel hyperplanes are constructed on each side of the separation space with the aim of maximizing the distance between them. A kernel function in S V M uses the kernel trick (a method for using a linear classifier algorithm to solve a nonlinear problem)
  • 13. The most commonly used kernel function is the radial basis function (R B F). Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 21 Support Vector Machines (S V M) (4 of 4) Many linear classifiers (hyperplanes) may separate the data Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 22 Application Case 5.3 (1 of 4) Identifying Injury Severity Risk Factors in Vehicle Crashes with Predictive Analytics Figure 5.7 Data Acquisition/Merging/Preparation Process. Problem Method
  • 14. Results Conclutions Source: Microsoft Excel 2010, Microsoft Corporation. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 23 Application Case 5.3 (2 of 4) Identifying Injury Severity Risk Factors in Vehicle Crashes with Predictive Analytics Key success factors: Data acquisition Data Preparation 1For numeric variables: mean (st. dev.); for binary or nominal variables: % frequency of the top two classes. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 15. 24 Application Case 5.3 (3 of 4) Identifying Injury Severity Risk Factors in Vehicle Crashes with Predictive Analytics Accuracy Variable importance Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 25 Application Case 5.3 (4 of 4) Identifying Injury Severity Risk Factors in Vehicle Crashes with Predictive Analytics Questions for Discussion: What are the key environmental concerns in the electric power industry? What are the main application areas for predictive modeling in the electric power industry? How was predictive modeling used to address a variety of
  • 16. problems in the electric power industry? Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 26 How Does a S V M Works? Following a machine-learning process, a S V M learns from the historic cases. The Process of Building S V M 1. Preprocess the data Scrub and transform the data. 2. Develop the model. Select the kernel type (R B F is often a natural choice). Determine the kernel parameters for the selected kernel type. If the results are satisfactory, finalize the model, otherwise change the kernel type and/or kernel parameters to achieve the desired accuracy level. 3. Extract and deploy the model. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 17. 27 The Process of Building a S V M Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 28 S V M Applications S V M are the most widely used kernel-learning algorithms for wide range of classification and regression problems S V M represent the state-of-the-art by virtue of their excellent generalization performance, superior prediction power, ease of use, and rigorous theoretical foundation Most comparative studies show its superiority in both regression and classification type prediction problems. S V M versus A N N? Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 18. 29 k-Nearest Neighbor Method (k-N N) (1 of 2) -demanding, computationally intensive iterative derivations k-N N a simplistic and logical prediction method, that produces very competitive results k-N N is a prediction method for classification as well as regression types (similar to A N N & S V M) k-N N is a type of instance-based learning (or lazy learning) – most of the work takes place at the time of prediction (not at modeling) k : the number of neighbors used in the model Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 30 k-Nearest Neighbor Method (k-N N) (2 of 2) The answer to “which class a data point belongs to?” depends on the value of k
  • 19. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 31 The Process of k-N N Method Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 32 k-N N Model Parameter (1 of 2) Similarity Measure: The Distance Metric Numeric versus nominal values? Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 20. 33 k-N N Model Parameter (2 of 2) Number of Neighbors (the value of k) The best value depends on the data Larger values reduces the effect of noise but also make boundaries between classes less distinct An “optimal” value can be found heuristically Cross Validation is often used to determine the best value for k and the distance measure Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 34 Application Case 5.4 Efficient Image Recognition and Categorization with k N N Questions for Discussion: Why is image recognition/classification a worthy but difficult problem? How can k N N be effectively used for image recognition/classification applications?
  • 21. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 35 Naïve Bayes Method for Classification (1 of 2) Naïve Bayes is a simple probability-based classification method Naïve - assumption of independence among the input variables Can use both numeric and nominal input variables Numeric variables need to be discretized Can be used for both regression and classification Naïve based models can be developed very efficiently and effectively Using maximum likelihood method Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 36 Bayes Theorem Developed by Thomas Bayes (1701–1761)
  • 22. Determines the conditional probabilities Given that X and Y are two events: Go trough the simple example in the book (p. 279) Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 37 Naïve Bayes Method for Classification (2 of 2) Process of Developing a Naïve Bayes Classifier Training Phase Obtain and pre-process the data Discretize the numeric variables Calculate the prior probabilities of all class labels Calculate the likelihood for all predictor variables/values Testing Phase Using the outputs of Steps 3 and 4 above, classify the new samples See the numerical example in the book… Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
  • 23. Rights Reserved 38 Application Case 5.5 (1 of 2) Predicting Disease Progress in Crohn’s Disease Patients: A Comparison of Analytics Methods Questions for Discussion: What is Crohn’s disease and why is it important? Based on the findings of this Application Case, what can you tell about the use of analytics in chronic disease management? What other methods and data sets might be used to better predict the outcomes of this chronic disease? Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 39 Application Case 5.5 (2 of 2) Predicting Disease Progress in Crohn’s Disease Patients: A Comparison of Analytics Methods
  • 24. Methodology Prediction Accuracy Variable Importance Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 40 Bayesian Networks (1 of 5) A tool for representing dependency structure in a graphical, explicit, and intuitive way A directed acyclic graph whose nodes correspond to the variables and arcs that signify conditional dependencies between variables and their possible values Direction of the arc matter A partial causality link in student retention Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 25. 41 Bayesian Networks (2 of 5) How can B N be constructed? Manually By an engineer with the help of a domain expert Time demanding, expensive (for large networks) Experts may not even be available Automatically Analytically … By learning/inducing the structure of the network from the historical data Availability high-quality historical data is imperative Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 42 Bayesian Networks (3 of 5) How can B N be constructed? Analytically
  • 26. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 43 Bayesian Networks (4 of 5) How can B N be constructed? Tree Augmented Naïve Bayes Network Structure Compute information function Build the undirected graph Build a spanning tree Convert the undirected graph into a directed one Construct a T A N model Tree Augmented Naïve (T A N) Bayes Network Structure Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 44
  • 27. Bayesian Networks (5 of 5) EXAMPLE: Bayesian Belief Network for Predicting Freshmen Student Attrition Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 45 Ensemble Modeling (1 of 3) Ensemble – combination of models (or model outcomes) for better results Why do we need to use ensembles: Better accuracy More stable/robust/consistent/reliable outcomes Reality: ensembles wins competitions! Netflix $1M Prise completion Many recent competitions at Kaggle.com The Wisdom of Crowds Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 28. 46 Ensemble Modeling (2 of 3) Figure 5.19 Graphical Depiction of Model Ensembles for Prediction Modeling. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 47 Types of Ensemble Modeling (1 of 4) Figure 5.20 Simple Taxonomy for Model Ensembles. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 48 Types of Ensemble Modeling (2 of 4)
  • 29. Figure 5.20 Bagging-Type Decision Tree Ensembles. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 49 Types of Ensemble Modeling (3 of 4) Figure 5.20 Boosting-Type Decision Tree Ensembles. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 50 Ensemble Modeling (3 of 3) Variants of Bagging & Boosting (Decision Trees) Decision Trees Ensembles Random Forest Stochastic Gradient Boosting Stacking
  • 30. Stack generation or super learners Information Fusion Any number of any models Simple/weighted combining Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 51 Types of Ensemble Modeling (4 of 4) STACKING INFORMATION FUSION Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved
  • 31. 52 Ensembles – Pros and Cons Table 5.9 Brief List of Pros and Cons of Model Ensembles Compared to Individual Models.PROS (Advantages)Description AccuracyModel ensembles usually result in more accurate models than individual models. RobustnessModel ensembles tend to be more robust against outliers and noise in the data set than individual models. Reliability (stable)Because of the variance reduction, model ensembles tend to produce more stable, reliable, and believable results than individual models.CoverageModel ensembles tend to have a better coverage of the hidden complex patterns in the data set than individual models.CONS (Shortcomings)DescriptionComplexityModel ensembles are much more complex than individual models.Computationally expensiveCompared to individual models, ensembles require more time and computational power to build. Lack of transparency (explainability)Because of their complexity, it is more difficult to understand the inner structure of model ensembles (how they do what they do) than individual models. Harder to deployModel ensembles are much more difficult to deploy in an analytics-based Managerial decision-support system than single models.
  • 32. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 53 Application Case 5.6 (1 of 3) To Imprison or Not to Imprison: A Predictive Analytics-Based D S S for Drug Courts Questions for Discussion: What are drug courts and what do they do for the society? What are the commonalities and differences between traditional (theoretical) and modern (machine-learning) base methods in studying drug courts? Can you think of other social situations and systems for which predictive analytics can be used? Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 54 Application Case 5.6 (2 of 3)
  • 33. To Imprison or Not to Imprison: A Predictive Analytics-Based D S S for Drug Courts Methodology Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 55 Application Case 5.6 (3 of 3) To Imprison or Not to Imprison: A Predictive Analytics-Based D S S for Drug Courts Prediction Accuracy A N N: artificial neural networks; D T: decision trees; L R: logistic regression; R F: random forest; H E: heterogeneous ensemble; A U C: area under the curve; G: graduated; T: terminated Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 56
  • 34. End of Chapter 5 Questions / Comments Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 57 Copyright This work is protected by United States copyright laws and is provided solely for the use of instructors in teaching their courses and assessing student learning. Dissemination or sale of any part of this work (including on the World Wide Web) will destroy the integrity of the work and is not permitted. The work and materials from it should never be made available to students except by instructors using the accompanying text in their classes. All recipients of this work are expected to abide by these restrictions and to honor the intended pedagogical purposes and the needs of other instructors who rely on these materials. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All
  • 35. Rights Reserved 1122 1122 22 1122 Minkowskidistance () =(...) If 1,theniscalledManhattendistance ()... If 2,theniscalledEuclideandistance () =( qqq q ijijipjp ijijipjp ijijip di,jxxxxxx qd di,j=xxxxxx qd di,jxxxxx -+-++- = -+-++- =
  • 37. ( ) Homogeneous model types decision trees ì ï í ï î ( ) Homogeneous model types decision trees ì ï í ï î .MsftOfcThm_Text1_Fill { fill:#000000; } .MsftOfcThm_MainDark1_Stroke {
  • 38. stroke:#000000; } Analytics, Data Science and A I: Systems for Decision Support Eleventh Edition Chapter 6 Deep Learning and Cognitive Computing Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved Slide in this Presentation Contain Hyperlinks. JAWS users should be able to get a list of links by using INSERT+F7 Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved If this PowerPoint presentation contains mathematical equations, you may need to check that your computer has the following installed: 1) Math Type Plugin 2) Math Player (free versions available) 3) NVDA Reader (free versions available)
  • 39. 1 Learning Objectives (1 of 2) 6.1 Learn what deep learning is and how it is changing the world of computing 6.2 Know the placement of deep learning within the broad family of A I learning methods 6.3 Understand how traditional “shallow” artificial neural networks (A N N) work 6.4 Become familiar with the development and learning processes of A N N 6.5 Develop an understanding of the methods to shed light into the A N N black box Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved Slide 2 is list of textbook LO numbers and statements 2 Learning Objectives (2 of 2) 6.6 Know the underlying concept and methods for deep neural networks 6.7 Become familiar with different types of deep learning
  • 40. methods 6.8 Understand how convolutional neural networks (C N N), recurrent neural networks (R N N), and long short-memory networks (L S T M) work 6.9 Become familiar with the computer frameworks for implementing deep learning 6.10 Know the foundational details about cognitive Computing and I B M Watson Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved Slide 2 is list of textbook LO numbers and statements 3 Opening Vignette (1 of 4) Fighting Fraud with Deep Learning and Artificial Intelligence Business problem Danske Bank Predictive analytics in banking Fraud detection The solution Deep learning The results
  • 41. Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 4 Opening Vignette (2 of 4) Fighting Fraud with Deep Learning and Artificial Intelligence Accuracy R O C curve D L vs traditional M L techniques Copyright © 2020, 2015, 2011 Pearson Education, Inc. All Rights Reserved 5 Opening Vignette (3 of 4) Fighting Fraud with Deep Learning and Artificial Intelligence A Generalized Framework for A I and Deep Learning–Based Analytics