Predictive Modelling
Predictive Modelling
MODELLING
Predictive
modelling
3 aspects of predictive modeling:
1. Sample Data: the data that we collect
is the problem of that describes our problem with known
developing a relationships between inputs and outputs.
model using 2. Learn a Model: the algorithm that we use
historical data to on the sample data to create a model that
make a prediction we can later use over and over again.
on new data
where we do not 3. Making Predictions: the use of our
have the answer. learned model on new data for which we
don’t know the output.
Classification predictive
Classificati modeling is the task of
on approximating a mapping
Predictive
Modeling
function (f) from input
variables (X) to discrete
output variables (y).
Class or
categories
A classification problem requires that examples be classified
into one of two or more classes.
A classification can have real-valued or discrete input variables.
A problem with two classes is often called a two-class or binary
classification problem.
A problem with more than two classes is often called a multi-
class classification problem.
A problem where an example is assigned multiple classes is
called a multi-label classification problem.
regression predictive
discrete continuou
class s quantity
label
modeling
Some algorithms can be used for both classification and
regression with small modifications, such as decision
trees and artificial neural networks. Some algorithms
cannot, or cannot easily be used for both problem types,
such as linear regression for regression predictive
modeling and logistic regression for classification
predictive modeling.