SlideShare a Scribd company logo
https://en.wikipedia.org/wiki/File:Second_Foundation_cover.jpg
Predictive Analytics Broken Down
CEO / Co-Founder Conductrics
www.conductrics.com
matt@conductrics.com
Past: Database Marketing
Education: Artificial Intelligence & Economics
twitter:@mgershoff, @conductrics
Email:matt@conductrics.com
www.conductrics.com/blog
Who is this guy?
Confidential
1. Cloud-based Adaptive Testing and Decision Engine
2. API-Based Testing, Targeting and Optimization
• REST API: Compatibility with CMS systems and other platforms
• Native Programming Wrappers (iOS, PHP, jQuery, Node, etc.)
• New JavaScript API for super fast decisions at scale
3. “WAX” Framework for point-and-click style customers
• Client-side, tag-based, “skip IT” style implementation
4. Browser UI
• Admin Console
• Reporting
What is Conductrics?
twitter:@mgershoff, @conductrics
Email:matt@conductrics.com
Confidential
1. Experimentation
• AB and Multivariate Testing
• Adaptive / Bandit Testing
2. Personalization
• Targeting with Business Logic
• Targeting via machine learning
What does Conductrics do?
twitter:@mgershoff, @conductrics
Email:matt@conductrics.com
Confidential
Promise of Predictive Analytics
The Promises:
• Help make predictions about the future
• Predictions about customer:
• Preferences
• Intent
Confidential
Benefits of Predictive Analytics
The Benefits:
• Provide customers with right set of
experiences
• Eliminate marketing waste
Confidential
Why care how it works?
• Better consumer of predictive analytics
tools
• How to get the most out of it predictive
analytics
• Help ensure you understand its
limitations
Confidential
Scope of talk?
All Predictive Analytics
Uses
Transactional
System
9
twitter: @mgershoff
1.Data
2.Logic
Two Requirements for Personalization
Data: ‘Sensing’ the World
Conductrics twitter: @mgershoff Blog:
www.conductrics.com/blog
• Return Customer
• Weekend/Weekday
• Mobile/DeskTop
• Browser Type
• User Age
• Geo/Census
• Weather
• Tenure/RFM Score
Observable
• Lottery Game
• Price
• Sales Offers
• Shipping Type
• Layout/UX
• Which Products
• Suggested
Quantities
Intervention
Types of Data
12
twitter: @mgershoff
1.Data
2.Logic
Two Requirements for Personalization
Confidential
Requirements for Personalization
Decision logic links
Observations to Actions
How to come up with the Logic?
IF [Customer]
THEN
[Experiences?]
How to come up with the Logic?
IF [Customer]
THEN
[Experiences?]
…in way that Optimizes Performance
twitter: @mgershoff
Example: Veikkaus
twitter: @mgershoff
Example: Lottery Games
Show high price games …
Or show the low price games
twitter: @mgershoff
Example: Lottery Games
To keep it simple just look at:
• New or Repeat Player
• Weekday or Weekend
twitter: @mgershoff
Example: Lottery Games
How to come up with the Logic?
IF [Repeat and/or
Weekend]
THEN [High/Low Price?]
…in order to be most profitable
How its Done
1 Learn how Repeat and Weekend customers predict
low price games
twitter: @mgershoff
How its Done
twitter: @mgershoff
2 Learn how Repeat and Weekend customers predict
high price games
1 Learn how Repeat and Weekend customers predict
low price games
How its Done
1 Learn how Repeat and Weekend customers predict
low price games
twitter: @mgershoff
2 Learn how Repeat and Weekend customers predict
high price games
3 Then compare for each customer
(Choose the one with the highest value)
@mgershoff
• Deep Learning Nets
• Decision Trees
• Gaussian Process (is a Bayesian method)
• Support Vector Machines
• KNN - actually kinda like segmentation
• Naive Bayes (is NOT a Bayesian method)
• Logistic Regression
Predictive Analytics Methods
http://conductrics.com/data-science-resources/
http://conductrics.com/data-science-resources-2
We are going to use
Linear Regression
@mgershoff
twitter: @mgershoff
Why Linear Regression?
Benefits:
1.Has nice Statistical Properties
2.Easy(ish) to interpret
3.In practice, often all you need
twitter: @mgershoff
What is Linear Regression
A model of relationships in this form:
twitter: @mgershoff
What is Linear Regression
A model of relationships in this form:
Prediction = Base + B1*Attribute1 … + Bj*Attributej
twitter: @mgershoff
What is Linear Regression
A model of relationships in this form:
Prediction = Base + B1*Attribute1 … + Bj*Attributej
Just Add up all of the customer ‘attributes’ by
the impact (B) of the Feature
twitter: @mgershoff
What is Linear Regression
We will learn two models, one for each game:
twitter: @mgershoff
What is Linear Regression
We will learn two models, one for each game:
Game High = BaseH + WH*Weekend + RH*Return
twitter: @mgershoff
What is Linear Regression
We will learn two models, one for each game:
Game High = BaseH + WH*Weekend + RH*Return
Game Low = BaseL + WL*Weekend + RL*Return
Linear Regression
+
Sequential Learning
@mgershoff
twitter: @mgershoff
Benefits of Sequential Learning
1.Don’t have to wait to collect the data
twitter: @mgershoff
Benefits of Sequential Learning
1.Don’t have to wait to collect the data
2.Constantly updating you can use it real time
twitter: @mgershoff
Benefits of Sequential Learning
1.Don’t have to wait to collect the data
2.Constantly updating you can use it real time
3.Scalable–any real production PA is almost
certainly going to use the method
twitter: @mgershoff
Benefits of Sequential Learning
1.Don’t have to wait to collect the data
2.Constantly updating you can use it real time
3.Scalable–any real production PA is almost
certainly going to use the method
4.The computations are simple to understand
twitter: @mgershoff
twitter: @mgershoff
The Sequential Algorithm in words
1) Observe the data for a single customer
2) Using the current parameter values to make a
prediction
3) See how far off your predicted value was from the
actual value
4) Use how far off you prediction was to update your
parameter values
5) Adjust how much you update by something like O(1/n)
– this is the Learning Rate, sort of like an average
6) Repeat
twitter: @mgershoff
ParameterNew:= Parameterold - Adjustment
The Sequential Algorithm
Current Value
The Difference (Error) of the actual value and
the predicted result
Adjustment = (Predicted - Actual) * Learning Rate
twitter: @mgershoff
How it is done: No data yet, high cost game
Hidden
Base R W Return WkEnd Sales Predict Error
0 0 0
What We Know
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
0 0 0 0 1 1.00
What We Know
Observe New Customer on Weekend
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
0 0 0 0 1 1.00
What We Know
Observe New Customer on Weekend
Prediction= BaseH + WH*Weekend + RH*Return
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
0 0 0 0 1 1.00 0 -1.00
What We Know
Plug in values
0 = 0 + 0*0 + 0*1
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
0 0 0 0 1 1.00 0 -1.00
What We Know
Updated
Base R W
1 0 1
Update Base and Weekend Impact Score
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
1 0 1 0 0 2.00
What We Know
Observe New Customer Weekday
Prediction= BaseH + WH*Weekend + RH*Return
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
1 0 1 0 0 2.00 1.00 -1.00
What We Know
Plug in values
1 = 1 + 0*0 + 1*0
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
1 0 1 0 0 2.00 1 -1.00
What We Know
Updated
Base R W
1.5 0 1
Update Just the Base Impact Score
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
1.5 0 1 1 0 3.00
What We Know
Observe Return Customer on Weekday
Prediction= BaseH + WH*Weekend + RH*Return
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
1.5 0 1 1 0 3.00 1.50 -1.50
What We Know
Plug in values
1.5 = 1.5 + 0*1 + 1*0
twitter: @mgershoff
Hidden
Base R W Return WkEnd Sales Predict Error
1.5 0 1 1 0 3.00 1.50 -1.50
What We Know
Updated
Base R W
1.75 0.75 1
Update the Base and Return Impact Score
twitter: @mgershoff
Online Regression
After 200 Iterations
Base R W
2.0 1.0 -1.0
High Price Model Results
Sales = 2.0 + 1.0*Return -1.0*Weekend
twitter: @mgershoff
Online Results: 200 Iterations
-1.50
-1.00
-0.50
0.00
0.50
1.00
1.50
2.00
2.50
0 50 100 150
Parameter Value
Observations
Base Level
Returning Parameter
Weekend Parameter
54
matt@conductrics.com;
www.conductrics.com
Back to Our Task
Model: High Price Game
High = 2.0 + 1.0*Return -1.0*Weekend
55
matt@conductrics.com;
www.conductrics.com
Back to Our Task
Model Low Price Game
Low = 1.0 + 1.0*Return + 0.5*Weekend
twitter: @mgershoff
Tabular Targeting Logic
Returning Weekend High Price Low Price Selection
N N 2.0 1.0 High
Y N 3.0 2.0 High
N Y 1.0 1.5 Low
Y Y 2.0 2.5 Low
twitter: @mgershoff
Targeting Logic as Rule
IF [Weekend]
THEN [Low]
Else [High]
twitter: @mgershoff
Targeting Logic as Rule
IF [Weekend]
THEN [Low]
Else [High]
Expressing the logic as a set of succinct
rules is generally a hard problem
How to evaluate our
targeting logic?
www.conductrics.com/blog
Conductrics twitter: @mgershoff Blog:
www.conductrics.com/blog
A/B
TEST!!!
How do we measure our Targeting?
Need a Baseline
www.conductrics.com/blog
www.conductrics.com/blog
Random Selection as Control
Good:
1. A baseline we can always use
2. Selecting randomly is often good policy
when we don’t have any additional
information
Bad: Often hard to beat (which is Good)
Random ain’t too bad
Users 50/50
Model Evaluation: AB Style
Low
Model
Standard
Control
Random
Play
www.conductrics.com/blog
Users 50/50
Compare the Results of Each
Low
Model
Standard
Control
Random
Play
www.conductrics.com/blog
Random
Results: Model ROI/Lift
Target
-
Random
Lift =
www.conductrics.com/blog
www.conductrics.com/blog
Beware the Faustian Bargain!
Description Michał Elwiro Andriolli
Date 1895
Source http://www.pinakoteka.zascianek.pl/Andriolli/Index.htm
www.conductrics.com/blog
Customer data needs to be ‘accurate’ AND available
at decision time
We need to create AND manage experiences and
content
Need to create AND mange our decision logic
Difficult to know what state system is in. Before just
one state, now many.
Targeting = Complexity
𝑽𝒂𝒍𝒖𝒆 𝑪𝒐𝒎𝒑𝒍𝒆𝒙 𝑺𝒚𝒔𝒕𝒆𝒎 − 𝑽𝒂𝒍𝒖𝒆(𝑺𝒊𝒎𝒑𝒍𝒆)
𝑽𝒂𝒍𝒖𝒆(𝑺𝒊𝒎𝒑𝒍𝒆)
www.conductrics.com/blog
Targeting and the ROI of Complexity
What about
Segmentation?
@mgershoff
Image Source: http://en.wikipedia.org/wiki/File:Carl_Sagan_-_1980.jpg;
Just 20 Customer Features
1 Million
Combinations
@mgershoff
power(2,20) assuming all non mutually exclusive
Segmentation Doesn't Scale
Thank You
www.Conductrics.com
Twitter:mgershoff
Email:matt@conductrics.com

More Related Content

PDF
Damion Brown - The Missing Automation Layer - Superweek 2017
PDF
Should Digital Analysts Become More Data Science-y?
PPTX
Radical Analytics, Superweek Hungary, January 2017
PDF
Reinforcement learning conductrics-superweek2017
PPTX
Data import and widening in Google Analytics
PPTX
Turning Analysis into Action with APIs - Superweek2017
PDF
The Leader Story 01 | How data drives marketing strategy
PPTX
SUPERWEEK Analytics Presentation
Damion Brown - The Missing Automation Layer - Superweek 2017
Should Digital Analysts Become More Data Science-y?
Radical Analytics, Superweek Hungary, January 2017
Reinforcement learning conductrics-superweek2017
Data import and widening in Google Analytics
Turning Analysis into Action with APIs - Superweek2017
The Leader Story 01 | How data drives marketing strategy
SUPERWEEK Analytics Presentation

Viewers also liked (16)

PDF
A Data-driven approach to marketing
 
PPTX
Behavioral Targeting and SEM
PDF
6 reasons why you need data driven marketing
PDF
Predictive Conversion Modeling - Lifting Web Analytics to the next level
PPTX
Using SEO in Google Analytics | Analytics Pros Webinar by Mark McLaren
PDF
Introduction to Reinforcement Learning
PPTX
Data Driven Marketing
PPTX
How DMP Will Save Marketing - Myths, Truths and Best Practices
PDF
Enabling Data-Driven Marketing
PDF
MeasureCamp IX (London) - 10 JavaScript Concepts for web analysts
PDF
Inbound Marketing: A Love Story
PDF
Performance-marketing - это увлекательно! Александр Худолей, iConText. РИФ+КИ...
PPTX
Turning Analysis into Action with APIs - Superweek 2017
PDF
Google Universal Analytics event - Kristoffer Ewald - Helsinki may 2014
PDF
Study: The Future of VR, AR and Self-Driving Cars
PDF
3 Things Every Sales Team Needs to Be Thinking About in 2017
A Data-driven approach to marketing
 
Behavioral Targeting and SEM
6 reasons why you need data driven marketing
Predictive Conversion Modeling - Lifting Web Analytics to the next level
Using SEO in Google Analytics | Analytics Pros Webinar by Mark McLaren
Introduction to Reinforcement Learning
Data Driven Marketing
How DMP Will Save Marketing - Myths, Truths and Best Practices
Enabling Data-Driven Marketing
MeasureCamp IX (London) - 10 JavaScript Concepts for web analysts
Inbound Marketing: A Love Story
Performance-marketing - это увлекательно! Александр Худолей, iConText. РИФ+КИ...
Turning Analysis into Action with APIs - Superweek 2017
Google Universal Analytics event - Kristoffer Ewald - Helsinki may 2014
Study: The Future of VR, AR and Self-Driving Cars
3 Things Every Sales Team Needs to Be Thinking About in 2017
Ad

Similar to Predictive Analytics Broken Down (20)

PPTX
Applied Data Science for monetization: pitfalls, common misconceptions, and n...
PPTX
LTV prediction - How to save millions with ML
PPTX
Tech meetup Data Driven - Codemotion
PDF
Predictive Analytics in Practice - Breakfast Club 11th May 2017
PPTX
Predire il futuro con Machine Learning & Big Data
PDF
Data Science for Business Managers - An intro to ROI for predictive analytics
DOCX
DSO528GroupProject-PortugueseBank
PDF
Modelling for decisions
PDF
De-Mystefying Predictive Analytics
PPTX
Evans_Analytics2e_ppt_11.pptx
PDF
Heuristic design of experiments w meta gradient search
PDF
Assumptions: Check yo'self before you wreck yourself
PDF
Artificial Intelligence in Action
PPTX
Supporting B2Bsales forecasting by machine learning - Mirjana Klajic Borstnar
PDF
Predictive model and segmented sensitivity analysis
DOCX
Walmart Sales Prediction Using Rapidminer Prepared by Naga.docx
PPTX
Manufacturing Data Analytics
PDF
Reinforcement Learning in Practice: Contextual Bandits
PDF
How ml can improve purchase conversions
PDF
Production model lifecycle management 2016 09
Applied Data Science for monetization: pitfalls, common misconceptions, and n...
LTV prediction - How to save millions with ML
Tech meetup Data Driven - Codemotion
Predictive Analytics in Practice - Breakfast Club 11th May 2017
Predire il futuro con Machine Learning & Big Data
Data Science for Business Managers - An intro to ROI for predictive analytics
DSO528GroupProject-PortugueseBank
Modelling for decisions
De-Mystefying Predictive Analytics
Evans_Analytics2e_ppt_11.pptx
Heuristic design of experiments w meta gradient search
Assumptions: Check yo'self before you wreck yourself
Artificial Intelligence in Action
Supporting B2Bsales forecasting by machine learning - Mirjana Klajic Borstnar
Predictive model and segmented sensitivity analysis
Walmart Sales Prediction Using Rapidminer Prepared by Naga.docx
Manufacturing Data Analytics
Reinforcement Learning in Practice: Contextual Bandits
How ml can improve purchase conversions
Production model lifecycle management 2016 09
Ad

Recently uploaded (20)

PDF
An introduction to the IFRS (ISSB) Stndards.pdf
PPTX
Module 1 - Cyber Law and Ethics 101.pptx
PDF
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
PDF
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
PDF
The Internet -By the Numbers, Sri Lanka Edition
PPTX
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
PPT
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
PPTX
Funds Management Learning Material for Beg
PPTX
INTERNET------BASICS-------UPDATED PPT PRESENTATION
PPTX
E -tech empowerment technologies PowerPoint
DOCX
Unit-3 cyber security network security of internet system
PPTX
Internet___Basics___Styled_ presentation
PDF
Paper PDF World Game (s) Great Redesign.pdf
PDF
SASE Traffic Flow - ZTNA Connector-1.pdf
PPTX
international classification of diseases ICD-10 review PPT.pptx
PDF
Unit-1 introduction to cyber security discuss about how to secure a system
PDF
Sims 4 Historia para lo sims 4 para jugar
PPTX
Introuction about WHO-FIC in ICD-10.pptx
PPTX
presentation_pfe-universite-molay-seltan.pptx
An introduction to the IFRS (ISSB) Stndards.pdf
Module 1 - Cyber Law and Ethics 101.pptx
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
Design_with_Watersergyerge45hrbgre4top (1).ppt
The Internet -By the Numbers, Sri Lanka Edition
Introduction about ICD -10 and ICD11 on 5.8.25.pptx
isotopes_sddsadsaadasdasdasdasdsa1213.ppt
Funds Management Learning Material for Beg
INTERNET------BASICS-------UPDATED PPT PRESENTATION
E -tech empowerment technologies PowerPoint
Unit-3 cyber security network security of internet system
Internet___Basics___Styled_ presentation
Paper PDF World Game (s) Great Redesign.pdf
SASE Traffic Flow - ZTNA Connector-1.pdf
international classification of diseases ICD-10 review PPT.pptx
Unit-1 introduction to cyber security discuss about how to secure a system
Sims 4 Historia para lo sims 4 para jugar
Introuction about WHO-FIC in ICD-10.pptx
presentation_pfe-universite-molay-seltan.pptx

Predictive Analytics Broken Down