SlideShare a Scribd company logo
2020
GPU-ACCELERATED
MACHINE LEARNING INTRO
2
	
•  PMM	at	NVIDIA	
•  Author	of		free	Apache	Spark	3.0	
ebook:	
https://www.nvidia.com/en-us/deep-
learning-ai/solutions/data-science/
apache-spark-3/	
Carol	McDonald
3
Introduction to Machine Learning
Supervised Machine Learning
Unsupervised Machine Learning
Deep Learning
GPU Accelerated Machine Learning
	
	
Agenda	
3
4
Agenda
Introduction to Machine Learning
Supervised Machine Learning
Unsupervised Machine Learning
Deep Learning
5
What	is	AI?
6
AI	at	NSA,	MIT	Late	80s
7
Problems	with	hard	coded	Rules	
•  Rules	are	manual,		uses	a	human	expert	
–  difficult	to	maintain	
–  give	a	one	size	fits	all	decision!		(2	times	overdose	same	as	38	times)	
•  Machine	learning	uses	data	and	statistics		
–  can	give	sorted	probabilty,	can	precisely	match/target	individuals
8
What	is	Machine	Learning?	
Train Algorithm Build Model
Features
Predictions
f(X)
9
What	has	changed	in	the	past	10	years?	
Big	Data	and	Distributed	computing	
Improved	machine	learning	Algorithms
10
Apache	Spark	Distributed	Datasets	
Distributed Dataset
Node
Executor
P4
Node
Executor
P1 P3
Node
Executor
P2
partitioned
Partition	1	
8213034705,	95,	
2.927373,	
jake7870,	0……		
Partition	2	
8213034705,	115,	
2.943484,		
Davidbresler2,	1….	
Partition	3	
8213034705,	100,	
2.951285,	
gladimacowgirl,	
58…	
	
Partition	4	
8213034705,	117,	
2.998947,	daysrus,	
95….	
•  Data read into Memory Cache
•  Partitioned across a cluster
•  Operated on in parallel
•  Cached in memory for iterations
11
GPUs	speed	up	Multi	core	servers	for	parallel		processing	
Cluster of GPUs 1 million times faster than Cray-1
12
Mythbusters	explain	Parallel	GPU	vs	Sequential	CPU	
•  Painting	a	smily	face	with	a	sequential	paint	gun
13
Mythbusters	explain	Parallel	graphics	with	GPU		
•  Painting	a	smiling	face	with	one	blast	from	a	parallel	paint	gun	!
14
Agenda
Introduction to Machine Learning
Supervised Machine Learning
Unsupervised Machine Learning
Deep Learning
15
Supervised	and	Unsupervised	Machine	Learning	
Machine Learning
Unsupervised
•  Clustering
•  Collaborative Filtering
•  Frequent Pattern Mining
Supervised
•  Classification
•  Regression
Label
16
Supervised	Algorithms	use	Labeled	Data
17
ML	Discovery	Model	Building	
Update	
Monitor
18
Supervised	Machine	Learning:	Classification	&	Regression	
Classification
Identifies
category for item
Spam	/	Not	Spam
19
Form	of	ML	that:	
•  Identifies	which	category	an	item	belongs	to		
•  Uses	supervised	learning	algorithms	
–  Data	is	labeled		
	
Classification:	Definition	
Sentiment
20
Credit	Card	Fraud	Example	
•  What	are	we	trying	to	predict?		
–  This	is	the	Label	or	Target	outcome:		
–  Fraud	or	Not	Fraud	
•  What	are	the	“if	questions”	or	properties	we	can	use	to	predict?		
–  These	are	the	Features:		
–  Is	the	amount	spent	today	>	historical	daily	average?		
–  Are	there	transactions	close	in	time	at	locations	far	apart	?	
–  Are	the	number	of	transactions	today	>	historical	average?	
–  Are	there	new	state	or	foreign	purchases?	
Credit	Card	Transaction	Features	
Number	of	Transactions	last	24	hours	
Total	$	Amount	last	24	hours	
Average	Amount	last	24	hours	
Average	Amount	last	24	hours	compared	to	historical	use	
Location	and	Time	difference	since	Last	Transaction	
Average	transaction		
fraud	risk	of	merchant	type	
Merchant	types	for	day	compared	to	historical	use	
Features derived
From Transaction
History
21
Decision	Tree	For	Classification	
•  Tree of decisions about features
•  Estimates IF THEN ELSE questions
•  Gives probability of a correct decision
Is the amount spent in 24 hours >
average
Is the number of
states used from > 2
Are there multiple
Purchases today from
risky merchants?
YES NO
NoYES
Fraud
90%
Not Fraud
50%
Fraud
90%
Not Fraud
30%
YES No
22
•  Random	Forest	model	consists	of	multiple	
decision	trees	from	subsets	of	data	
•  Final	Prediction	is	combined	average	
output	of	all	trees	
•  Improves	accuracy	
•  Gradient	Boosted	Decision	Trees	
•  Iteratively	uses	residual	error	to	improve	
multiple	trees.	Final	prediciton	weighted	
sum.		
•  XGBoost	distributed	faster	version	of	GBDT		
Random	Forest,	Gradient	Boosting	Decision	Trees,	XGBoost
23
Examples	
•  Retail	Example:	
–  Predict	price,	sales		
•  Telecom:	
–  Predict	customer	will	churn	
•  Healthcare	Example:			
–  Probability	of	readmission	
•  Marketing	
–  Predict	probability	customer	will	click	on	add
24
Supervised	Learning	House	Price	Prediction	Example	
•  What	are	we	trying	to	predict?		
–  This	is	the	Label	or	Target	outcome:		
–  The	house	price	$	
•  What	are	the	“if	questions”	or	properties	we	can	use	to	predict?		
–  These	are	the	Features:		
–  The	size	of	the	house	(square	meters)
25
Label:
House Price
Y
X
Feature: house size
(square meters)
Data point: price, size
House Price = intercept + coefficient * house size
y = a + bx
House	Price	Regression	Example
26
Decision	Tree	for	House	Price
27
Regression	Predicts	a	Numeric	Value	
•  Regression	predicts	a	numeric	value	(eg	price)	
•  Retail	Example:	
–  Sales	based	on	an	event	
•  Healthcare	Example:			
–  Days	of	hospital	stay
28
Agenda
Introduction to Machine Learning
Supervised Machine Learning
Unsupervised Machine Learning
Deep Learning
29
Supervised	and	Unsupervised	Machine	Learning	
Machine Learning
Unsupervised
•  Clustering
•  Collaborative Filtering
•  Frequent Pattern Mining
Supervised
•  Classification
•  Regression
Label
30
Unsupervised	Algorithms	use	Unlabeled	data	
Customer GroupsBuild ModelTrain Algorithm
Finds patterns
New Customer
Purchase Data
Use Model
Similar Customer Group
Contains patterns Recognizes patterns
Customer purchase
data
31
Unsupervised	Machine	Learning:	Clustering	
Clustering
group news articles into different categories
32
Clustering:	Definition	
Groups	objects	into	clusters		
	with	high	feature	similarity
33
Uses	of	Clustering	
Clustering	Examples	include:	
•  Grouping:	
–  Similar	search	results	,	text	
–  Similar	customers	
–  Patient	similarity	
–  Similar	Products		
•  Anomaly	detection:	finding	outliers,	what’s	outside	
of	the	groups	not	similar
34
Clustering:	Example	
Group	similar	objects
35
Clustering:	Example	
Group	similar	objects	
Use	MLlib	K-means	algorithm	
1.  Initialize coordinates to K cluster centers
36
Clustering:	Example	
Group	similar	objects	
Use	MLlib	K-means	algorithm	
1.  Initialize coordinates to K clusters
centers (centroid)
2.  Assign all points to nearest cluster
center (centroid)
37
Clustering:	Example	
Group	similar	objects	
Use	MLlib	K-means	algorithm	
1.  Initialize coordinates to center of clusters
(centroid)
2.  Assign all points to nearest centroid
3.  Update centroids to center of assigned
points
38
Clustering:	Example	
Group	similar	objects	
Use	MLlib	K-means	algorithm	
1.  Initialize coordinates to center of clusters
(centroid)
2.  Assign all points to nearest centroid
3.  Update centroids to center of points
4.  Repeat until conditions met
39
Association,	Co-Occurrence,	Market	Basket		Recommendations	
•  Retail		
–  Products	which	are	purchased	
together	
•  		Take	action:	
–  Store	layouts	
–  Which	products	to	put	on	
specials,	promote,	coupons…	
•  Healthcare	
–  Patients	like	mine	cohorts
40
Agenda
Introduction to Machine Learning
Supervised Machine Learning
Unsupervised Machine Learning
Deep Learning
41
Deep	Learning	
Multilayered	neural	networks
42
The	Network	is	trained	with	images
43
Neural	network	neuron		or	node		
Each	node	takes	input	data	and	a	weight	and	outputs	a	confidence	score	to	the	next	layer
44
Each	node	outputs	a	confidence	score	to	the	next	layer
45
Errors	are	calculted	at	the	output	layer
46
Errors	are	sent	back	through	the	network
47
This	process	is	repeated,	adjusting	weights,	until	correct
48
This	process	is	repeated	with	lots	of	images
49
Deep	Learning	
During	this	process	layers	learn	the	optimal	features	for	the	model
50
Deep	Learning	Features	
•  Advantage:	
–  Features	do	not	have	to	be	
predetermined	
•  Disadvantage:	
–  Decisions	are	a	black	box	
Feature
Decisions
?
51
Deep	Neural	Networks	
•  Classification	and	
•  Forecasting
52
Convolutional	Neural	Networks	for	Images	
•  Image	crunchers	to	identify	objects		
•  Today’s	eyes	for	identifying	cancer,	driving	cars,	
oil	exploration
53
Recurrent	Neural	Networks	for	Sequenced	data	
•  Sequence	of	events	and	language	patterns	
•  Amazon’s	Alexa,	Apple’s	Siri,	Google’s	
autocomplete,	fraud,	stock	predictions	and	
algorithmic	trading
54
Agenda
Introduction to Machine Learning
Supervised Machine Learning
Unsupervised Machine Learning
Deep Learning
GPUs
55
GPUs have been responsible for the advancement of deep learning in the
past several years	
https://developer.nvidia.com/deep-learning-software
56
cuDF cuIO
Analytics
Data Preparation VisualizationModel Training
cuML
Machine Learning
cuGraph
Graph Analytics
PyTorch, TensorFlow,
MxNet
Deep Learning
cuxfilter, pyViz,
plotly
Visualization
Dask
GPU Memory
RAPIDS	
End-to-End	Accelerated	GPU	Data	Science	
https://developer.nvidia.com/blog/building-an-accelerated-data-science-ecosystem-rapids-hits-two-years/
57
� All systems utilize the same memory format
� No overhead for cross-system communication
� Projects can share functionality (eg, Parquet-to-
Arrow reader)
Source: From Apache Arrow Home Page - https://arrow.apache.org/
GPU	DataFrame	and	Apache	Arrow
58
Data	processing	challenges	with	CPU-powered	spark	
Hadoop	brought	scale-out	processing	to	data	analytics	
ETL and traditional machine-learning
workloads continued to be written with
tools like Scikit-Learn or multi-CPU
distributed solutions like Spark.
Limited	Horizontal	Scalability	
2030202020102000
Data Processing
Requirements
CPU
Gap in Data
Processing
Data to
Analyze
CPU
Processing
Hadoop Era Spark Era
59
DATA	PROCESSING	SOLUTION	FOR	TODAY	AND	TOMORROW	
	
Spark	3.0	on	GPUs	
Spark	3.0	clusters	can	now	be	accelerated	using	
RAPIDS	software	and	NVIDIA	GPUs	
and	exceed	data	processing	requirements
60
BENEFITS OF GPU ACCELERATED SPARK 3.0	
Accelerate data science pipelines without code changes
One	pipeline,	from	ingest	to	data	prep	to	training	
Data	preparation	and	model	training	are	both	GPU-accelerated	
Infrastructure	is	consolidated	and	simplified
61
NVIDIA	innovations	in	Spark	3.0	
•  RAPIDS	Accelerator	for	Spark	
3.0	GPU	Acceleration	of:		
•  Spark	Data	Frames	
•  Spark	SQL	
•  Shuffle	
Accelerating	Spark	pipelines	end-to-end
62
To	dive	deeper	into	Apache	Spark	3.0,	
download	the	free	Apache	Spark	3.0	
ebook:	
https://www.nvidia.com/en-us/deep-
learning-ai/solutions/data-science/
apache-spark-3/	
TO	LEARN	MORE
63
•  Developers	https://developer.nvidia.com/	
•  RAPIDS	https://developer.nvidia.com/rapids	
•  Deep	Learning	https://developer.nvidia.com/deep-learning	
•  https://news.developer.nvidia.com/oak-ridge-national-laboratory-coronavirus-
research/	
•  https://developer.nvidia.com/blog/jumpstarting-ai-with-covid-19-ct-inference-
pipeline-and-clara-deploy-quickstart-vm/	
•  https://news.developer.nvidia.com/	
•  https://news.developer.nvidia.com/new-resource-for-nvidia-developers-access-
technical-content-through-nvidia-on-demand/	
•  https://blazingsql.com/	
TO	LEARN	MORE
64
Integrations, feedback, documentation support, pull requests, new issues, or code donations welcomed!
APACHE ARROW
GPU OPEN ANALYTICS
INITIATIVE
https://arrow.apache.org/
@ApacheArrow
http://gpuopenanalytics.com/
@GPUOAI
RAPIDS
https://rapids.ai
@RAPIDSAI
DASK
https://dask.org
@Dask_dev
Join	the	Movement	
Everyone Can Help!
65
GITHUB DOCKER
https://github.com/rapidsai
ANACONDA NGC
https://anaconda.org/rapidsai/ https://ngc.nvidia.com/registry/
nvidia-rapidsai-rapidsai
https://hub.docker.com/r/
rapidsai/rapidsai/
RAPIDS	
How Do I Get the Software?

More Related Content

PDF
Predicting Flight Delays with Spark Machine Learning
PPTX
Apache Spark Machine Learning Decision Trees
PDF
Analysis of Popular Uber Locations using Apache APIs: Spark Machine Learning...
PDF
Analyzing Flight Delays with Apache Spark, DataFrames, GraphFrames, and MapR-DB
PDF
Streaming Machine learning Distributed Pipeline for Real-Time Uber Data Using...
PDF
Streaming healthcare Data pipeline using Apache APIs: Kafka and Spark with Ma...
PDF
Fast Cars, Big Data How Streaming can help Formula 1
PDF
Structured Streaming Data Pipeline Using Kafka, Spark, and MapR-DB
Predicting Flight Delays with Spark Machine Learning
Apache Spark Machine Learning Decision Trees
Analysis of Popular Uber Locations using Apache APIs: Spark Machine Learning...
Analyzing Flight Delays with Apache Spark, DataFrames, GraphFrames, and MapR-DB
Streaming Machine learning Distributed Pipeline for Real-Time Uber Data Using...
Streaming healthcare Data pipeline using Apache APIs: Kafka and Spark with Ma...
Fast Cars, Big Data How Streaming can help Formula 1
Structured Streaming Data Pipeline Using Kafka, Spark, and MapR-DB

What's hot (20)

PDF
Applying Machine Learning to IOT: End to End Distributed Pipeline for Real-Ti...
PDF
Applying Machine learning to IOT: End to End Distributed Distributed Pipeline...
PDF
Applying Machine Learning to Live Patient Data
PDF
How Big Data is Reducing Costs and Improving Outcomes in Health Care
PDF
Live Machine Learning Tutorial: Churn Prediction
PDF
Spark graphx
PDF
Streaming patterns revolutionary architectures
PDF
Spark and the Future of Advanced Analytics by Thomas Dinsmore
PDF
Demystifying AI, Machine Learning and Deep Learning
PDF
On-Prem Solution for the Selection of Wind Energy Models
PPTX
Machine Learning with Spark
PPTX
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
PDF
Spark in the Hadoop Ecosystem-(Mike Olson, Cloudera)
PDF
Graph Analytics in Spark
PDF
Analytics Zoo: Building Analytics and AI Pipeline for Apache Spark and BigDL ...
PDF
Approximation algorithms for stream and batch processing
PDF
Performance Analysis of Apache Spark and Presto in Cloud Environments
PDF
Analyzing 2TB of Raw Trace Data from a Manufacturing Process: A First Use Cas...
PDF
Apache Spark Machine Learning
PDF
Apache Spark AI Use Case in Telco: Network Quality Analysis and Prediction wi...
Applying Machine Learning to IOT: End to End Distributed Pipeline for Real-Ti...
Applying Machine learning to IOT: End to End Distributed Distributed Pipeline...
Applying Machine Learning to Live Patient Data
How Big Data is Reducing Costs and Improving Outcomes in Health Care
Live Machine Learning Tutorial: Churn Prediction
Spark graphx
Streaming patterns revolutionary architectures
Spark and the Future of Advanced Analytics by Thomas Dinsmore
Demystifying AI, Machine Learning and Deep Learning
On-Prem Solution for the Selection of Wind Energy Models
Machine Learning with Spark
Exploring Titan and Spark GraphX for Analyzing Time-Varying Electrical Networks
Spark in the Hadoop Ecosystem-(Mike Olson, Cloudera)
Graph Analytics in Spark
Analytics Zoo: Building Analytics and AI Pipeline for Apache Spark and BigDL ...
Approximation algorithms for stream and batch processing
Performance Analysis of Apache Spark and Presto in Cloud Environments
Analyzing 2TB of Raw Trace Data from a Manufacturing Process: A First Use Cas...
Apache Spark Machine Learning
Apache Spark AI Use Case in Telco: Network Quality Analysis and Prediction wi...
Ad

Similar to Introduction to machine learning with GPUs (20)

PDF
Recommender Systems @ Scale, Big Data Europe Conference 2019
PDF
Guiding through a typical Machine Learning Pipeline
PDF
Recommender Systems @ Scale - PyData 2019
PPTX
Lessons Learned from Building Machine Learning Software at Netflix
PDF
Ai in finance
PPTX
intership summary
PPTX
Net campus2015 antimomusone
PPTX
PREDICT THE FUTURE , MACHINE LEARNING & BIG DATA
PDF
Practical Large Scale Experiences with Spark 2.0 Machine Learning: Spark Summ...
PDF
Introduction to Machine Learning with Python ( PDFDrive.com ).pdf
PPTX
TensorFlow Event presentation08-12-2024.pptx
PDF
Webinar: Machine Learning para Microcontroladores
PDF
Machine Learning Infrastructure
PDF
Systems Analytics - present & future
PDF
UnSupervised Learning Clustering
 
PDF
Makine Öğrenmesi, Yapay Zeka ve Veri Bilimi Süreçlerinin Otomatikleştirilmesi...
PDF
Simplified Machine Learning, Text, and Graph Analytics with Pivotal Greenplum
PPTX
Big data-science-oanyc
PPTX
BIG Data Science: A Path Forward
PDF
SparkML: Easy ML Productization for Real-Time Bidding
Recommender Systems @ Scale, Big Data Europe Conference 2019
Guiding through a typical Machine Learning Pipeline
Recommender Systems @ Scale - PyData 2019
Lessons Learned from Building Machine Learning Software at Netflix
Ai in finance
intership summary
Net campus2015 antimomusone
PREDICT THE FUTURE , MACHINE LEARNING & BIG DATA
Practical Large Scale Experiences with Spark 2.0 Machine Learning: Spark Summ...
Introduction to Machine Learning with Python ( PDFDrive.com ).pdf
TensorFlow Event presentation08-12-2024.pptx
Webinar: Machine Learning para Microcontroladores
Machine Learning Infrastructure
Systems Analytics - present & future
UnSupervised Learning Clustering
 
Makine Öğrenmesi, Yapay Zeka ve Veri Bilimi Süreçlerinin Otomatikleştirilmesi...
Simplified Machine Learning, Text, and Graph Analytics with Pivotal Greenplum
Big data-science-oanyc
BIG Data Science: A Path Forward
SparkML: Easy ML Productization for Real-Time Bidding
Ad

More from Carol McDonald (14)

PDF
Applying Machine Learning to IOT: End to End Distributed Pipeline for Real- T...
PDF
Spark machine learning predicting customer churn
PDF
Streaming Patterns Revolutionary Architectures with the Kafka API
PDF
Advanced Threat Detection on Streaming Data
PDF
Fast, Scalable, Streaming Applications with Spark Streaming, the Kafka API an...
PDF
Build a Time Series Application with Apache Spark and Apache HBase
PDF
Apache Spark streaming and HBase
PDF
Machine Learning Recommendations with Spark
PDF
Apache Spark Overview
PDF
Introduction to Spark
DOC
CU9411MW.DOC
PDF
Getting started with HBase
PDF
Introduction to Spark on Hadoop
PDF
NoSQL HBase schema design and SQL with Apache Drill
Applying Machine Learning to IOT: End to End Distributed Pipeline for Real- T...
Spark machine learning predicting customer churn
Streaming Patterns Revolutionary Architectures with the Kafka API
Advanced Threat Detection on Streaming Data
Fast, Scalable, Streaming Applications with Spark Streaming, the Kafka API an...
Build a Time Series Application with Apache Spark and Apache HBase
Apache Spark streaming and HBase
Machine Learning Recommendations with Spark
Apache Spark Overview
Introduction to Spark
CU9411MW.DOC
Getting started with HBase
Introduction to Spark on Hadoop
NoSQL HBase schema design and SQL with Apache Drill

Recently uploaded (20)

DOCX
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Complete Guide to Website Development in Malaysia for SMEs
PPTX
history of c programming in notes for students .pptx
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
Cost to Outsource Software Development in 2025
PPTX
Why Generative AI is the Future of Content, Code & Creativity?
PDF
Autodesk AutoCAD Crack Free Download 2025
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
iTop VPN 6.5.0 Crack + License Key 2025 (Premium Version)
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Designing Intelligence for the Shop Floor.pdf
PPTX
Advanced SystemCare Ultimate Crack + Portable (2025)
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
Greta — No-Code AI for Building Full-Stack Web & Mobile Apps
wealthsignaloriginal-com-DS-text-... (1).pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Complete Guide to Website Development in Malaysia for SMEs
history of c programming in notes for students .pptx
Odoo Companies in India – Driving Business Transformation.pdf
Cost to Outsource Software Development in 2025
Why Generative AI is the Future of Content, Code & Creativity?
Autodesk AutoCAD Crack Free Download 2025
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
iTop VPN 6.5.0 Crack + License Key 2025 (Premium Version)
Design an Analysis of Algorithms I-SECS-1021-03
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Designing Intelligence for the Shop Floor.pdf
Advanced SystemCare Ultimate Crack + Portable (2025)
Navsoft: AI-Powered Business Solutions & Custom Software Development

Introduction to machine learning with GPUs