SlideShare a Scribd company logo
1 of 71
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

Viewers also liked

A Data-driven approach to marketing
A Data-driven approach to marketingA Data-driven approach to marketing
A Data-driven approach to marketingFFW
 
Behavioral Targeting and SEM
Behavioral Targeting and SEMBehavioral Targeting and SEM
Behavioral Targeting and SEMDaniel Waisberg
 
6 reasons why you need data driven marketing
6 reasons why you need data driven marketing6 reasons why you need data driven marketing
6 reasons why you need data driven marketingRedspire Ltd
 
Predictive Conversion Modeling - Lifting Web Analytics to the next level
Predictive Conversion Modeling - Lifting Web Analytics to the next levelPredictive Conversion Modeling - Lifting Web Analytics to the next level
Predictive Conversion Modeling - Lifting Web Analytics to the next levelPetri Mertanen
 
Using SEO in Google Analytics | Analytics Pros Webinar by Mark McLaren
Using SEO in Google Analytics | Analytics Pros Webinar by Mark McLarenUsing SEO in Google Analytics | Analytics Pros Webinar by Mark McLaren
Using SEO in Google Analytics | Analytics Pros Webinar by Mark McLarenCaleb Whitmore
 
Introduction to Reinforcement Learning
Introduction to Reinforcement LearningIntroduction to Reinforcement Learning
Introduction to Reinforcement LearningEdward Balaban
 
How DMP Will Save Marketing - Myths, Truths and Best Practices
How DMP Will Save Marketing - Myths, Truths and Best PracticesHow DMP Will Save Marketing - Myths, Truths and Best Practices
How DMP Will Save Marketing - Myths, Truths and Best PracticesAnnalect Finland
 
Enabling Data-Driven Marketing
Enabling Data-Driven MarketingEnabling Data-Driven Marketing
Enabling Data-Driven MarketingAnnalect Finland
 
MeasureCamp IX (London) - 10 JavaScript Concepts for web analysts
MeasureCamp IX (London) - 10 JavaScript Concepts for web analystsMeasureCamp IX (London) - 10 JavaScript Concepts for web analysts
MeasureCamp IX (London) - 10 JavaScript Concepts for web analystsSimo Ahava
 
Inbound Marketing: A Love Story
Inbound Marketing: A Love StoryInbound Marketing: A Love Story
Inbound Marketing: A Love StoryHubSpot
 
Performance-marketing - это увлекательно! Александр Худолей, iConText. РИФ+КИ...
Performance-marketing - это увлекательно! Александр Худолей, iConText. РИФ+КИ...Performance-marketing - это увлекательно! Александр Худолей, iConText. РИФ+КИ...
Performance-marketing - это увлекательно! Александр Худолей, iConText. РИФ+КИ...iConText
 
Turning Analysis into Action with APIs - Superweek 2017
Turning Analysis into Action with APIs - Superweek 2017Turning Analysis into Action with APIs - Superweek 2017
Turning Analysis into Action with APIs - Superweek 2017Peter Meyer
 
Google Universal Analytics event - Kristoffer Ewald - Helsinki may 2014
Google Universal Analytics event - Kristoffer Ewald - Helsinki may 2014Google Universal Analytics event - Kristoffer Ewald - Helsinki may 2014
Google Universal Analytics event - Kristoffer Ewald - Helsinki may 2014Kristoffer Ewald
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsLinkedIn
 
3 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 20173 Things Every Sales Team Needs to Be Thinking About in 2017
3 Things Every Sales Team Needs to Be Thinking About in 2017Drift
 

Viewers also liked (16)

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

Similar to Predictive Analytics Broken Down

Product Management For Free-to-Play Games w/ AC&A's Senior PM
Product Management For Free-to-Play Games w/ AC&A's Senior PMProduct Management For Free-to-Play Games w/ AC&A's Senior PM
Product Management For Free-to-Play Games w/ AC&A's Senior PMProduct School
 
Game analytics - The challenges of mobile free-to-play games
Game analytics - The challenges of mobile free-to-play gamesGame analytics - The challenges of mobile free-to-play games
Game analytics - The challenges of mobile free-to-play gamesChristian Beckers
 
Game analytics @ Halfbrick
Game analytics @ HalfbrickGame analytics @ Halfbrick
Game analytics @ HalfbrickAndrew Saul
 
Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013
Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013
Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013Eric Seufert
 
MeasureFest July 2021 - Session Segmentation with Machine Learning
MeasureFest July 2021 - Session Segmentation with Machine LearningMeasureFest July 2021 - Session Segmentation with Machine Learning
MeasureFest July 2021 - Session Segmentation with Machine LearningRichard Lawrence
 
Realtime Web Apps in 2014 & Beyond
Realtime Web Apps in 2014 & BeyondRealtime Web Apps in 2014 & Beyond
Realtime Web Apps in 2014 & BeyondPhil Leggetter
 
Marketing Automation Hacks: Marketo
Marketing Automation Hacks: MarketoMarketing Automation Hacks: Marketo
Marketing Automation Hacks: MarketoUberflip
 
How to improve app business based on data?
How to improve app business based on data?How to improve app business based on data?
How to improve app business based on data?DevGAMM Conference
 
Scylla Summit 2018: How Scylla Helps You to be a Better Application Developer
Scylla Summit 2018: How Scylla Helps You to be a Better Application DeveloperScylla Summit 2018: How Scylla Helps You to be a Better Application Developer
Scylla Summit 2018: How Scylla Helps You to be a Better Application DeveloperScyllaDB
 
Cheapass.in — presented at JSFoo 2016
Cheapass.in — presented at JSFoo 2016Cheapass.in — presented at JSFoo 2016
Cheapass.in — presented at JSFoo 2016Aakash Goel
 
You Can Do It in SQL
You Can Do It in SQLYou Can Do It in SQL
You Can Do It in SQLDatabricks
 
Database Considerations for SaaS Products
Database Considerations for SaaS ProductsDatabase Considerations for SaaS Products
Database Considerations for SaaS ProductsShawn Hooper
 
Top 20 Most Popular Maintenance Management Software
Top 20 Most Popular Maintenance Management SoftwareTop 20 Most Popular Maintenance Management Software
Top 20 Most Popular Maintenance Management SoftwareCapterra
 
Relationship Between Tweets and Bitcoin
Relationship Between Tweets and BitcoinRelationship Between Tweets and Bitcoin
Relationship Between Tweets and BitcoinKushagra Aggarwal
 
Top 20 Most Popular Help Desk Software
Top 20 Most Popular Help Desk SoftwareTop 20 Most Popular Help Desk Software
Top 20 Most Popular Help Desk SoftwareCapterra
 
This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?
This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?
This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?Mark Heckler
 
Intro to Segment & Tracking for Live Streaming by Livestorm
 Intro to Segment & Tracking for Live Streaming by Livestorm Intro to Segment & Tracking for Live Streaming by Livestorm
Intro to Segment & Tracking for Live Streaming by LivestormLivestorm
 
Premature optimisation: The Root of All Evil
Premature optimisation: The Root of All EvilPremature optimisation: The Root of All Evil
Premature optimisation: The Root of All EvilFabio Akita
 
DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...
DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...
DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...iMasters
 

Similar to Predictive Analytics Broken Down (20)

Product Management For Free-to-Play Games w/ AC&A's Senior PM
Product Management For Free-to-Play Games w/ AC&A's Senior PMProduct Management For Free-to-Play Games w/ AC&A's Senior PM
Product Management For Free-to-Play Games w/ AC&A's Senior PM
 
Game analytics - The challenges of mobile free-to-play games
Game analytics - The challenges of mobile free-to-play gamesGame analytics - The challenges of mobile free-to-play games
Game analytics - The challenges of mobile free-to-play games
 
Game analytics @ Halfbrick
Game analytics @ HalfbrickGame analytics @ Halfbrick
Game analytics @ Halfbrick
 
Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013
Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013
Big Data in Mobile Gaming - Eric Seufert presentation from IGExpo Feb 1 2013
 
MeasureFest July 2021 - Session Segmentation with Machine Learning
MeasureFest July 2021 - Session Segmentation with Machine LearningMeasureFest July 2021 - Session Segmentation with Machine Learning
MeasureFest July 2021 - Session Segmentation with Machine Learning
 
Realtime Web Apps in 2014 & Beyond
Realtime Web Apps in 2014 & BeyondRealtime Web Apps in 2014 & Beyond
Realtime Web Apps in 2014 & Beyond
 
Marketing Automation Hacks: Marketo
Marketing Automation Hacks: MarketoMarketing Automation Hacks: Marketo
Marketing Automation Hacks: Marketo
 
How to improve app business based on data?
How to improve app business based on data?How to improve app business based on data?
How to improve app business based on data?
 
Scylla Summit 2018: How Scylla Helps You to be a Better Application Developer
Scylla Summit 2018: How Scylla Helps You to be a Better Application DeveloperScylla Summit 2018: How Scylla Helps You to be a Better Application Developer
Scylla Summit 2018: How Scylla Helps You to be a Better Application Developer
 
Cheapass.in — presented at JSFoo 2016
Cheapass.in — presented at JSFoo 2016Cheapass.in — presented at JSFoo 2016
Cheapass.in — presented at JSFoo 2016
 
You Can Do It in SQL
You Can Do It in SQLYou Can Do It in SQL
You Can Do It in SQL
 
Database Considerations for SaaS Products
Database Considerations for SaaS ProductsDatabase Considerations for SaaS Products
Database Considerations for SaaS Products
 
Top 20 Most Popular Maintenance Management Software
Top 20 Most Popular Maintenance Management SoftwareTop 20 Most Popular Maintenance Management Software
Top 20 Most Popular Maintenance Management Software
 
Relationship Between Tweets and Bitcoin
Relationship Between Tweets and BitcoinRelationship Between Tweets and Bitcoin
Relationship Between Tweets and Bitcoin
 
Top 20 Most Popular Help Desk Software
Top 20 Most Popular Help Desk SoftwareTop 20 Most Popular Help Desk Software
Top 20 Most Popular Help Desk Software
 
Advanced Google Shopping By Andreas Reiffen
Advanced Google Shopping By Andreas ReiffenAdvanced Google Shopping By Andreas Reiffen
Advanced Google Shopping By Andreas Reiffen
 
This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?
This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?
This stuff is cool, but...HOW CAN I GET MY COMPANY TO DO IT?
 
Intro to Segment & Tracking for Live Streaming by Livestorm
 Intro to Segment & Tracking for Live Streaming by Livestorm Intro to Segment & Tracking for Live Streaming by Livestorm
Intro to Segment & Tracking for Live Streaming by Livestorm
 
Premature optimisation: The Root of All Evil
Premature optimisation: The Root of All EvilPremature optimisation: The Root of All Evil
Premature optimisation: The Root of All Evil
 
DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...
DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...
DevCommerce Conference 2016: Performance, anti-patterns e stacks pra desenvol...
 

Recently uploaded

Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITMgdsc13
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
PHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationPHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationLinaWolf1
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhimiss dipika
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一Fs
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012rehmti665
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 

Recently uploaded (20)

Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
PHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationPHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 Documentation
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhi
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
定制(AUT毕业证书)新西兰奥克兰理工大学毕业证成绩单原版一比一
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in  Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Jamuna Vihar Delhi reach out to us at 🔝9953056974🔝
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
Call Girls South Delhi Delhi reach out to us at ☎ 9711199012
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 

Predictive Analytics Broken Down