SlideShare a Scribd company logo
1© Copyright 2016 Pivotal. All rights reserved.
Data Science-Powered Apps for
the Internet of Things
Chris Rawles1 and Jarrod Vawdrey2
1. Sr. Data Scientist in New York, New York
2. Sr. Data Scientist in Atlanta, Georgia
2© Copyright 2016 Pivotal. All rights reserved.
Today’s talk
1. A real-time data science app
A. The app: a live demonstration
B. How can a data scientist build a data science application?
C. Revisiting the app
2. Generalizing the framework: Solving new data science
challenges
A. Internet of Things – Creating a smart app to prevent oil spill disasters
B. Financial data - How can retail banks influence their cardholders’
behavior?
3© Copyright 2016 Pivotal. All rights reserved.
Today’s talk
1. A real-time data science app
A. The app: a live demonstration
B. How can a data scientist build a data science application?
C. Revisiting the app
2. Generalizing the framework: Solving new data science
challenges
A. Internet of Things – Creating a smart app to prevent oil spill disasters
B. Financial data - How can retail banks influence their cardholders’
behavior?
4© Copyright 2016 Pivotal. All rights reserved.
App
5© Copyright 2016 Pivotal. All rights reserved.
Today’s talk
1. A real-time data science app
A. The app: a live demonstration
B. How can a data scientist build a data science application?
C. Revisiting the app
2. Generalizing the framework: Solving new data science
challenges
A. Internet of Things – creating a smart app
B. Financial data - How can retail banks influence their cardholders’
behavior?
6© Copyright 2016 Pivotal. All rights reserved.
Training
app
Model
Scoring as
a service
Model
Training as
a service
Sensor
app
Scoring
app
Dashboard
app
Data science workflow: Movement classification
1. Sensor + Dashboard
2. Redis
3. Training app
4. Scoring app
7© Copyright 2016 Pivotal. All rights reserved.
here is my source code
run it on the cloud for me
- Onsi Fakhouri
@onsijoe
i do not care how
8© Copyright 2016 Pivotal. All rights reserved.
cf push
 CF determines app type (Java, Python, Ruby, …)
 Installs necessary environment
 Provisions and binds data services
 Creates domain, routing, and load balancing
 Continual app health checks and restarts
9© Copyright 2016 Pivotal. All rights reserved.
Data ingestion: Accelerometric data
 Accelerometric data streamed from
mobile phone at 15 Hz (15x / second)
 Other sensor data: gyroscopic data,
magnetometer data, lon/lat, etc.
Accelerometer axes
10© Copyright 2016 Pivotal. All rights reserved.
 For real-time applications, low-latency data ingestion into
the data store is essential
 WebSocket protocol - socket.io
– Mobile phone  Webserver
– Webserver  Dashboard
 socket.io  redis
Data ingestion
Training
app
Sensor
app
11© Copyright 2016 Pivotal. All rights reserved.
Data storage
 We are using a redis store for:
– Storing training data
– Model persistence
– Storing a micro-batch of scoring data
 Other storage systems include GemFire, HAWQ/Hadoop,
Greenplum Database, PostgreSQL, …
12© Copyright 2016 Pivotal. All rights reserved.
Modeling
Scalable machine learning applications in Pivotal
Cloud Foundry
1. Training app
2. Scoring app
13© Copyright 2016 Pivotal. All rights reserved.
Modeling – Training app
 Goal: build a data-driven model that learns accelerometric
motions associated with each activity
Feature Engineering
• Time-domain
transformations
• Fast Fourier Transform
analysis
Machine Learning
Classification Model
• Random Forest Model
using 2 second time
windows (30 samples)
…
Training data
Trained
model
14© Copyright 2016 Pivotal. All rights reserved.
Model building
 20 seconds per
training activity
 Two second moving
window on training
data
 Features: time-
domain summary
statistics and Fourier
transform coefficients
15© Copyright 2016 Pivotal. All rights reserved.
Model training approaches
1. Near-real-time model training
– Use small batches to train model
2. Real-time model training
– Online machine learning algorithm : continually update model
using each new data point
3. Offline model training
– Build a model offline using batches
– Useful for models requiring finer model tuning and calibration
16© Copyright 2016 Pivotal. All rights reserved.
Feature Engineering
• Time-domain
transformations
• Fast Fourier Transform
analysis
Machine Learning
Classification Model
• Random Forest Model
using 2 second time
windows (30 samples)
Trained model
Streaming input window
Model
Prediction
API Call
Model
prediction
PCF App:
Scoring app
• Real-time model scoring
• The dashboard initiates a request via
an API call and receives a model
prediction
{ "channel": "1234",
"label": ”walking",
"label_value": 0.746 }
17© Copyright 2016 Pivotal. All rights reserved.
1. Application auto-scaling
– As the data grows, the model scales
2. Application autonomy
– The model application is independent of other applications = faster
development iterations
– Faster development = rapid feedback loop
3. Multiple applications can access model scoring app
Operationalizing scalable data science applications
Model scoring as a service
Why?
18© Copyright 2016 Pivotal. All rights reserved.
Today’s talk
1. A real-time data science app
A. The app: a live demonstration
B. How can a data scientist build a data science application?
C. Revisiting the app
2. Generalizing the framework: Solving new data science
challenges
A. Internet of Things – creating a smart app
B. Financial data - How can retail banks influence their cardholders’
behavior?
19© Copyright 2016 Pivotal. All rights reserved.
App
20© Copyright 2016 Pivotal. All rights reserved.
Today’s talk
1. A real-time data science app
A. The app: a live demonstration
B. How can a data scientist build a data science application?
C. Revisiting the app
2. Generalizing the framework: Solving new data science
challenges
A. Internet of Things – Creating a smart app to prevent oil spill disasters
B. Financial data - How can retail banks influence their cardholders’
behavior?
21© Copyright 2016 Pivotal. All rights reserved.
Gene Sequencing
Smart Grids
COST TO SEQUENCE
ONE GENOME
HAS FALLEN FROM
$100M IN
2001
TO $10K IN 2011
TO $1K IN 2014
READING SMART METERS
EVERY 15 MINUTES IS
3000X MORE
DATA INTENSIVE
Stock Market
Social Media
FACEBOOK UPLOADS
250 MILLION
PHOTOS EACH DAY
In all industries billions of data points represent
opportunities for the Internet of Things
Oil Exploration
Video Surveillance
OIL RIGS GENERATE
25000
DATA POINTS
PER SECOND
Medical Imaging
Mobile Sensors
22© Copyright 2016 Pivotal. All rights reserved.
How can we use data
to help prevent
accidents like the Macondo
Disaster ?
23© Copyright 2016 Pivotal. All rights reserved. 23© Copyright 2016 Pivotal. All rights reserved.
…by creating a Smart Application
24© Copyright 2016 Pivotal. All rights reserved.
Training
app
Model
Scoring as
a service
Model
Training as
a service
Sensor
app
Scoring
app
Dashboard
app
Data science workflow: Movement classification
25© Copyright 2016 Pivotal. All rights reserved.
Training
app
Model
Scoring as
a service
Model
Training as
a service
Sensor
app
Scoring
app
Dashboard
app
Data science workflow: Creating a smart app to
prevent oil spill disasters • Alert operator
• Send signal to control system
to change operating
parameters
• Replace old machinery
• Shut down plant
26© Copyright 2016 Pivotal. All rights reserved.
Training
app
Model
Scoring as
a service
Model
Training as
a service
Sensor
app
Scoring
app
Dashboard
app
Data science workflow: How can retail banks influence their
cardholders’ behavior? • Provide customized services
and promotions
• Next best offer
• Characterize and improve
customer satisfaction
27© Copyright 2016 Pivotal. All rights reserved.
Thank you
Questions and comments
crawles@pivotal.io
28© Copyright 2016 Pivotal. All rights reserved.

More Related Content

PPTX
Mind + Machines 2015: Digital Transformation in Internet of Things Era
PDF
Doing DevOps for Big Data? What You Need to Know About AIOps
PDF
IoT-Use-Case-eBook
PPTX
Iot Solution Development Platform
PDF
Predictive Analytics and the Industrial Internet of Manufacturing Things with...
PDF
Intelligent APIs for Big Data & IoT Create customized data views for mobile,...
PDF
Tec118 Teched2015 IOT use case and examples
PDF
Driving Digital Transformation through Service-Centric AIOps
Mind + Machines 2015: Digital Transformation in Internet of Things Era
Doing DevOps for Big Data? What You Need to Know About AIOps
IoT-Use-Case-eBook
Iot Solution Development Platform
Predictive Analytics and the Industrial Internet of Manufacturing Things with...
Intelligent APIs for Big Data & IoT Create customized data views for mobile,...
Tec118 Teched2015 IOT use case and examples
Driving Digital Transformation through Service-Centric AIOps

What's hot (19)

PPTX
The Prospect of IoT in the Oil & Gas
PDF
NUS-ISS Learning Day 2018- Designing software to make the most of cloud platf...
PDF
Integrated Analytics for IIoT Predictive Maintenance using IoT Big Data Cloud...
PPT
Ibm iot overview
PDF
Device to Intelligence, IOT and Big Data in Oracle
PDF
NUS-ISS Learning Day 2018- Harness the power of network effects and platform ...
PDF
Sap Leonardo IoT Overview
PDF
Is cloud secure or not
PPTX
AIOps in 2020: A Beginner's Guide
PDF
Countering Cybersecurity Risk in Today's IoT World
PDF
IoT and Big Data
PDF
Edge patterns in the IIoT
PDF
AIOps & Observability to Lead Your Digital Transformation
PDF
Top 10 reasons your IoT project will fail
PDF
Next Dimension + Cisco Smart Manufacturing
PDF
Internet of Things and Big Data
PPTX
Delivering Business Value from Operational Inisights at ING Bank
PDF
bbva_redhat-theAPIHour_IoT_Day-DavidBericat
DOCX
Decide if PhoneGap is for you as your mobile platform selection
The Prospect of IoT in the Oil & Gas
NUS-ISS Learning Day 2018- Designing software to make the most of cloud platf...
Integrated Analytics for IIoT Predictive Maintenance using IoT Big Data Cloud...
Ibm iot overview
Device to Intelligence, IOT and Big Data in Oracle
NUS-ISS Learning Day 2018- Harness the power of network effects and platform ...
Sap Leonardo IoT Overview
Is cloud secure or not
AIOps in 2020: A Beginner's Guide
Countering Cybersecurity Risk in Today's IoT World
IoT and Big Data
Edge patterns in the IIoT
AIOps & Observability to Lead Your Digital Transformation
Top 10 reasons your IoT project will fail
Next Dimension + Cisco Smart Manufacturing
Internet of Things and Big Data
Delivering Business Value from Operational Inisights at ING Bank
bbva_redhat-theAPIHour_IoT_Day-DavidBericat
Decide if PhoneGap is for you as your mobile platform selection
Ad

Viewers also liked (13)

PDF
Tablet Usage Study: Bangalore Chapter
PPT
Connecting devices to the internet of things
PDF
Confluence Keynote- Leading the change in a connected world - Pari Natarajan
PDF
Creating an Internet of Everything
PDF
Zinnov DRAUP : Tech Mafia Disrupting Multiple Industries
PDF
Internet of Things Innovations & Megatrends Update 12/14/16
PDF
Zinnov DRAUP : Engineering Services Outsourcing Overview
PDF
Dr David Soldani : Leading the disruptions | Zinnov Confluence '16 Munich
PPTX
The Future is Internet of Things (IOT)
PDF
The importance of strong entropy for iot
 
PDF
Designing IoT Experiences in the Age of Humanised Technology by Guido Woska, ...
PDF
Digital strategy to transform GE into digital industrial leader
PDF
Zinnov Zones for IoT Services 2017
Tablet Usage Study: Bangalore Chapter
Connecting devices to the internet of things
Confluence Keynote- Leading the change in a connected world - Pari Natarajan
Creating an Internet of Everything
Zinnov DRAUP : Tech Mafia Disrupting Multiple Industries
Internet of Things Innovations & Megatrends Update 12/14/16
Zinnov DRAUP : Engineering Services Outsourcing Overview
Dr David Soldani : Leading the disruptions | Zinnov Confluence '16 Munich
The Future is Internet of Things (IOT)
The importance of strong entropy for iot
 
Designing IoT Experiences in the Age of Humanised Technology by Guido Woska, ...
Digital strategy to transform GE into digital industrial leader
Zinnov Zones for IoT Services 2017
Ad

Similar to Data Science Powered Apps for Internet of Things (20)

PDF
Learn How to Operationalize IoT Apps on Pivotal Cloud Foundry
PDF
Smart App@Pivotal by Dat Tran
PDF
Saving Human Lives with the IoT
PPTX
Data Driven Action : A Primer on Data Science
PDF
Data science a practitioner's perspective
PDF
IoT as a metaphor!
PDF
Internet Of Things: How Data Science Driven Software is Eating the Connected ...
PDF
Internet Of Things: How Data Science Driven Software is Eating the Connected ...
PPTX
IoT: How Data Science Driven Software is Eating the Connected World
PPTX
Data Analytics in Digital Transformation
PDF
Using SparkML to Power a DSaaS (Data Science as a Service) with Kiran Muglurm...
PDF
Data Science meets Software Development
PPTX
Spark-Zeppelin-ML on HWX
PDF
Big Data Analytics for connected home
PDF
Using Data Science to Build an End-to-End Recommendation System
PDF
Big data analytics and building intelligent applications
PDF
AI meets Big Data
PDF
Building successful data science teams
PDF
Data Science with Spark
PDF
Data Science On The Google Cloud Platform Implementing Endtoend Realtime Data...
Learn How to Operationalize IoT Apps on Pivotal Cloud Foundry
Smart App@Pivotal by Dat Tran
Saving Human Lives with the IoT
Data Driven Action : A Primer on Data Science
Data science a practitioner's perspective
IoT as a metaphor!
Internet Of Things: How Data Science Driven Software is Eating the Connected ...
Internet Of Things: How Data Science Driven Software is Eating the Connected ...
IoT: How Data Science Driven Software is Eating the Connected World
Data Analytics in Digital Transformation
Using SparkML to Power a DSaaS (Data Science as a Service) with Kiran Muglurm...
Data Science meets Software Development
Spark-Zeppelin-ML on HWX
Big Data Analytics for connected home
Using Data Science to Build an End-to-End Recommendation System
Big data analytics and building intelligent applications
AI meets Big Data
Building successful data science teams
Data Science with Spark
Data Science On The Google Cloud Platform Implementing Endtoend Realtime Data...

More from VMware Tanzu (20)

PDF
Spring into AI presented by Dan Vega 5/14
PDF
What AI Means For Your Product Strategy And What To Do About It
PDF
Make the Right Thing the Obvious Thing at Cardinal Health 2023
PPTX
Enhancing DevEx and Simplifying Operations at Scale
PDF
Spring Update | July 2023
PPTX
Platforms, Platform Engineering, & Platform as a Product
PPTX
Building Cloud Ready Apps
PDF
Spring Boot 3 And Beyond
PDF
Spring Cloud Gateway - SpringOne Tour 2023 Charles Schwab.pdf
PDF
Simplify and Scale Enterprise Apps in the Cloud | Boston 2023
PDF
Simplify and Scale Enterprise Apps in the Cloud | Seattle 2023
PPTX
tanzu_developer_connect.pptx
PDF
Tanzu Virtual Developer Connect Workshop - French
PDF
Tanzu Developer Connect Workshop - English
PDF
Virtual Developer Connect Workshop - English
PDF
Tanzu Developer Connect - French
PDF
Simplify and Scale Enterprise Apps in the Cloud | Dallas 2023
PDF
SpringOne Tour: Deliver 15-Factor Applications on Kubernetes with Spring Boot
PDF
SpringOne Tour: The Influential Software Engineer
PDF
SpringOne Tour: Domain-Driven Design: Theory vs Practice
Spring into AI presented by Dan Vega 5/14
What AI Means For Your Product Strategy And What To Do About It
Make the Right Thing the Obvious Thing at Cardinal Health 2023
Enhancing DevEx and Simplifying Operations at Scale
Spring Update | July 2023
Platforms, Platform Engineering, & Platform as a Product
Building Cloud Ready Apps
Spring Boot 3 And Beyond
Spring Cloud Gateway - SpringOne Tour 2023 Charles Schwab.pdf
Simplify and Scale Enterprise Apps in the Cloud | Boston 2023
Simplify and Scale Enterprise Apps in the Cloud | Seattle 2023
tanzu_developer_connect.pptx
Tanzu Virtual Developer Connect Workshop - French
Tanzu Developer Connect Workshop - English
Virtual Developer Connect Workshop - English
Tanzu Developer Connect - French
Simplify and Scale Enterprise Apps in the Cloud | Dallas 2023
SpringOne Tour: Deliver 15-Factor Applications on Kubernetes with Spring Boot
SpringOne Tour: The Influential Software Engineer
SpringOne Tour: Domain-Driven Design: Theory vs Practice

Recently uploaded (20)

PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Encapsulation theory and applications.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
Network Security Unit 5.pdf for BCA BBA.
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Spectroscopy.pptx food analysis technology
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PPTX
Cloud computing and distributed systems.
PPTX
MYSQL Presentation for SQL database connectivity
PDF
cuic standard and advanced reporting.pdf
PPTX
Machine Learning_overview_presentation.pptx
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Programs and apps: productivity, graphics, security and other tools
Advanced methodologies resolving dimensionality complications for autism neur...
Chapter 3 Spatial Domain Image Processing.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Reach Out and Touch Someone: Haptics and Empathic Computing
Encapsulation theory and applications.pdf
A Presentation on Artificial Intelligence
Network Security Unit 5.pdf for BCA BBA.
Digital-Transformation-Roadmap-for-Companies.pptx
Spectroscopy.pptx food analysis technology
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Cloud computing and distributed systems.
MYSQL Presentation for SQL database connectivity
cuic standard and advanced reporting.pdf
Machine Learning_overview_presentation.pptx
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Programs and apps: productivity, graphics, security and other tools

Data Science Powered Apps for Internet of Things

  • 1. 1© Copyright 2016 Pivotal. All rights reserved. Data Science-Powered Apps for the Internet of Things Chris Rawles1 and Jarrod Vawdrey2 1. Sr. Data Scientist in New York, New York 2. Sr. Data Scientist in Atlanta, Georgia
  • 2. 2© Copyright 2016 Pivotal. All rights reserved. Today’s talk 1. A real-time data science app A. The app: a live demonstration B. How can a data scientist build a data science application? C. Revisiting the app 2. Generalizing the framework: Solving new data science challenges A. Internet of Things – Creating a smart app to prevent oil spill disasters B. Financial data - How can retail banks influence their cardholders’ behavior?
  • 3. 3© Copyright 2016 Pivotal. All rights reserved. Today’s talk 1. A real-time data science app A. The app: a live demonstration B. How can a data scientist build a data science application? C. Revisiting the app 2. Generalizing the framework: Solving new data science challenges A. Internet of Things – Creating a smart app to prevent oil spill disasters B. Financial data - How can retail banks influence their cardholders’ behavior?
  • 4. 4© Copyright 2016 Pivotal. All rights reserved. App
  • 5. 5© Copyright 2016 Pivotal. All rights reserved. Today’s talk 1. A real-time data science app A. The app: a live demonstration B. How can a data scientist build a data science application? C. Revisiting the app 2. Generalizing the framework: Solving new data science challenges A. Internet of Things – creating a smart app B. Financial data - How can retail banks influence their cardholders’ behavior?
  • 6. 6© Copyright 2016 Pivotal. All rights reserved. Training app Model Scoring as a service Model Training as a service Sensor app Scoring app Dashboard app Data science workflow: Movement classification 1. Sensor + Dashboard 2. Redis 3. Training app 4. Scoring app
  • 7. 7© Copyright 2016 Pivotal. All rights reserved. here is my source code run it on the cloud for me - Onsi Fakhouri @onsijoe i do not care how
  • 8. 8© Copyright 2016 Pivotal. All rights reserved. cf push  CF determines app type (Java, Python, Ruby, …)  Installs necessary environment  Provisions and binds data services  Creates domain, routing, and load balancing  Continual app health checks and restarts
  • 9. 9© Copyright 2016 Pivotal. All rights reserved. Data ingestion: Accelerometric data  Accelerometric data streamed from mobile phone at 15 Hz (15x / second)  Other sensor data: gyroscopic data, magnetometer data, lon/lat, etc. Accelerometer axes
  • 10. 10© Copyright 2016 Pivotal. All rights reserved.  For real-time applications, low-latency data ingestion into the data store is essential  WebSocket protocol - socket.io – Mobile phone  Webserver – Webserver  Dashboard  socket.io  redis Data ingestion Training app Sensor app
  • 11. 11© Copyright 2016 Pivotal. All rights reserved. Data storage  We are using a redis store for: – Storing training data – Model persistence – Storing a micro-batch of scoring data  Other storage systems include GemFire, HAWQ/Hadoop, Greenplum Database, PostgreSQL, …
  • 12. 12© Copyright 2016 Pivotal. All rights reserved. Modeling Scalable machine learning applications in Pivotal Cloud Foundry 1. Training app 2. Scoring app
  • 13. 13© Copyright 2016 Pivotal. All rights reserved. Modeling – Training app  Goal: build a data-driven model that learns accelerometric motions associated with each activity Feature Engineering • Time-domain transformations • Fast Fourier Transform analysis Machine Learning Classification Model • Random Forest Model using 2 second time windows (30 samples) … Training data Trained model
  • 14. 14© Copyright 2016 Pivotal. All rights reserved. Model building  20 seconds per training activity  Two second moving window on training data  Features: time- domain summary statistics and Fourier transform coefficients
  • 15. 15© Copyright 2016 Pivotal. All rights reserved. Model training approaches 1. Near-real-time model training – Use small batches to train model 2. Real-time model training – Online machine learning algorithm : continually update model using each new data point 3. Offline model training – Build a model offline using batches – Useful for models requiring finer model tuning and calibration
  • 16. 16© Copyright 2016 Pivotal. All rights reserved. Feature Engineering • Time-domain transformations • Fast Fourier Transform analysis Machine Learning Classification Model • Random Forest Model using 2 second time windows (30 samples) Trained model Streaming input window Model Prediction API Call Model prediction PCF App: Scoring app • Real-time model scoring • The dashboard initiates a request via an API call and receives a model prediction { "channel": "1234", "label": ”walking", "label_value": 0.746 }
  • 17. 17© Copyright 2016 Pivotal. All rights reserved. 1. Application auto-scaling – As the data grows, the model scales 2. Application autonomy – The model application is independent of other applications = faster development iterations – Faster development = rapid feedback loop 3. Multiple applications can access model scoring app Operationalizing scalable data science applications Model scoring as a service Why?
  • 18. 18© Copyright 2016 Pivotal. All rights reserved. Today’s talk 1. A real-time data science app A. The app: a live demonstration B. How can a data scientist build a data science application? C. Revisiting the app 2. Generalizing the framework: Solving new data science challenges A. Internet of Things – creating a smart app B. Financial data - How can retail banks influence their cardholders’ behavior?
  • 19. 19© Copyright 2016 Pivotal. All rights reserved. App
  • 20. 20© Copyright 2016 Pivotal. All rights reserved. Today’s talk 1. A real-time data science app A. The app: a live demonstration B. How can a data scientist build a data science application? C. Revisiting the app 2. Generalizing the framework: Solving new data science challenges A. Internet of Things – Creating a smart app to prevent oil spill disasters B. Financial data - How can retail banks influence their cardholders’ behavior?
  • 21. 21© Copyright 2016 Pivotal. All rights reserved. Gene Sequencing Smart Grids COST TO SEQUENCE ONE GENOME HAS FALLEN FROM $100M IN 2001 TO $10K IN 2011 TO $1K IN 2014 READING SMART METERS EVERY 15 MINUTES IS 3000X MORE DATA INTENSIVE Stock Market Social Media FACEBOOK UPLOADS 250 MILLION PHOTOS EACH DAY In all industries billions of data points represent opportunities for the Internet of Things Oil Exploration Video Surveillance OIL RIGS GENERATE 25000 DATA POINTS PER SECOND Medical Imaging Mobile Sensors
  • 22. 22© Copyright 2016 Pivotal. All rights reserved. How can we use data to help prevent accidents like the Macondo Disaster ?
  • 23. 23© Copyright 2016 Pivotal. All rights reserved. 23© Copyright 2016 Pivotal. All rights reserved. …by creating a Smart Application
  • 24. 24© Copyright 2016 Pivotal. All rights reserved. Training app Model Scoring as a service Model Training as a service Sensor app Scoring app Dashboard app Data science workflow: Movement classification
  • 25. 25© Copyright 2016 Pivotal. All rights reserved. Training app Model Scoring as a service Model Training as a service Sensor app Scoring app Dashboard app Data science workflow: Creating a smart app to prevent oil spill disasters • Alert operator • Send signal to control system to change operating parameters • Replace old machinery • Shut down plant
  • 26. 26© Copyright 2016 Pivotal. All rights reserved. Training app Model Scoring as a service Model Training as a service Sensor app Scoring app Dashboard app Data science workflow: How can retail banks influence their cardholders’ behavior? • Provide customized services and promotions • Next best offer • Characterize and improve customer satisfaction
  • 27. 27© Copyright 2016 Pivotal. All rights reserved. Thank you Questions and comments crawles@pivotal.io
  • 28. 28© Copyright 2016 Pivotal. All rights reserved.