SlideShare une entreprise Scribd logo
1  sur  31
Télécharger pour lire hors ligne
Big	Data	and	Machine	
Learning	for	businesses
By	Abdul	Wahid
Who	AM	I
Abdul	Wahid
CEO	at	GleeTech (http://gleetech.com)
• Started	working	as	a	Software	Engineer	in	2005.
• PhD	(Computer	Science).
• 2016,	Victoria	University	of	Wellington
• Help	people	to	develop	awesome	digital	products.
• Passionate	about
• Big	Data
• Machine	Learning
• Tech	Startups/Businesses
• Email:abdul@gleetech.com
• Personal	site:	http://awahid.net
What	is	Big	Data?
Big	Data
• Additional	Dimentions
• Complexity
• Multiple	sources	and	data	streams
• Variability
• Unpredictable	Data	flows.
• Social	media	trending.
Data	is	the	new	Oil	of	the	Digital	
Economy
Wired	2014
Why	Big	Data	is	important
• Data	contains	information.
• Information	leads	to	insights.
• Insights	helps	in	making	better	decisions.
Examples	- Using	data
• Weather	Data
• Utility	&	Manufacturing	companies	
• Transport	&	Tourism
• News,	Accidents,	Census
• Insurance	Companies	
• Survey,	Blogs,	Comments,	Tweets
• Marketing	Analysis
• Customer	Segmentation
Examples	- Benefits	of	data
• Sports
• Strategies,	Data	driven	analytics
• Entertainment
• Users	opinions,	Sentiments
• Retail
• Consumer	behavior
• Health	Care
• Patient/symptom	analysis
• Financial	Institutions
• Fraud	Detection
How	to	derive	insights	from	data?
Machine	Learning?
“Field	of	study	that	gives	computers	the	ability	to	learn	without	being	explicitly	
programmed.”	Arthur	Samuel	(1959).
https://www.linkedin.com/pulse/business-intelligence-its-relationship-big-data-geekstyle
Top	Algorithms
• Supervised	Learning
• Decision	Trees
• Naïve	Bayes	Classification
• Ordinary	Least	Squares	Regression
• Logistic	Regression
• Support	Vector	Machines
• Ensemble	Methods
• Unsupervised	Learning
• Clustering	Algorithms	
• Centroid-based	algorithms
• Connectivity-based	algorithms
• Density-based	algorithms
• Probabilistic
• Dimensionality	Reduction
• Neural	networks	/	Deep	Learning
• Principal	Component	Analysis
• Singular	Value	Decomposition
• Independent	Component	Analysis
Example
• We	want	some	hypothesis	h	that	predicts	whether	we	will	be	paid	back
1. +a,	-c,	+i,	+e,	+o,	+u:	Y
2. -a,	+c,	-i,	+e,	-o,	-u:	N
3. +a,	-c,	+i,	-e,	-o,	-u:	Y
4. -a,	-c,	+i,	+e,	-o,	-u:	Y
5. -a,	+c,	+i,	-e,	-o,	-u:	N
6. -a,	-c,	+i,	-e,	-o,	+u:	Y
7. +a,	-c,	-i,	-e,	+o,	-u:	N
8. +a,	+c,	+i,	-e,	+o,	-u:	N
• Lots	of	possible	hypotheses:	will	be	paid	back	if…
• Income	is	high	(wrong	on	2	occasions	in	training	data)
• Income	is	high	and	no	Criminal	record	(always	right	in	training	data)
• (Address	is	known	AND	((NOT	Old)	OR	Unemployed))	OR	((NOT	Address	is	known)	AND	(NOT	
Criminal	Record))	(always	right	in	training	data)
• Which	one	seems	best?		Anything	better?
Decision	trees
high	Income?
yes no
NO
yes no
NO
Criminal	record?
YES
Constructing	a	decision	
tree,	one	step	at	a	time address?
yes no
+a,	-c,	+i,	+e,	+o,	+u:	Y
-a,	+c,	-i,	+e,	-o,	-u:	N
+a,	-c,	+i,	-e,	-o,	-u:	Y
-a,	-c,	+i,	+e,	-o,	-u:	Y
-a,	+c,	+i,	-e,	-o,	-u:	N
-a,	-c,	+i,	-e,	-o,	+u:	Y
+a,	-c,	-i,	-e,	+o,	-u:	N
+a,	+c,	+i,	-e,	+o,	-u:	N
-a,	+c,	-i,	+e,	-o,	-u:	N
-a,	-c,	+i,	+e,	-o,	-u:	Y
-a,	+c,	+i,	-e,	-o,	-u:	N
-a,	-c,	+i,	-e,	-o,	+u:	Y
+a,	-c,	+i,	+e,	+o,	+u:	Y
+a,	-c,	+i,	-e,	-o,	-u:	Y
+a,	-c,	-i,	-e,	+o,	-u:	N
+a,	+c,	+i,	-e,	+o,	-u:	N
criminal? criminal?
-a,	+c,	-i,	+e,	-o,	-u:	N
-a,	+c,	+i,	-e,	-o,	-u:	N
-a,	-c,	+i,	+e,	-o,	-u:	Y
-a,	-c,	+i,	-e,	-o,	+u:	Y
+a,	-c,	+i,	+e,	+o,	+u:	Y
+a,	-c,	+i,	-e,	-o,	-u:	Y
+a,	-c,	-i,	-e,	+o,	-u:	N
+a,	+c,	+i,	-e,	+o,	-u:	N
income?
+a,	-c,	+i,	+e,	+o,	+u:	Y
+a,	-c,	+i,	-e,	-o,	-u:	Y
+a,	-c,	-i,	-e,	+o,	-u:	N
yes no
yes no
yes no Address	was	
maybe	not	the	
best	attribute	to	
start	with…
Starting	with	a	different	attribute
• Seems	like	a	much	better	starting	point	than	address
• Each	node	almost	completely	uniform
• Almost	completely	predicts	whether	we	will	be	paid	back
yes no
+a,	-c,	+i,	+e,	+o,	+u:	Y
-a,	+c,	-i,	+e,	-o,	-u:	N
+a,	-c,	+i,	-e,	-o,	-u:	Y
-a,	-c,	+i,	+e,	-o,	-u:	Y
-a,	+c,	+i,	-e,	-o,	-u:	N
-a,	-c,	+i,	-e,	-o,	+u:	Y
+a,	-c,	-i,	-e,	+o,	-u:	N
+a,	+c,	+i,	-e,	+o,	-u:	N
criminal?
-a,	+c,	-i,	+e,	-o,	-u:	N
-a,	+c,	+i,	-e,	-o,	-u:	N
+a,	+c,	+i,	-e,	+o,	-u:	N
+a,	-c,	+i,	+e,	+o,	+u:	Y
+a,	-c,	+i,	-e,	-o,	-u:	Y
-a,	-c,	+i,	+e,	-o,	-u:	Y
-a,	-c,	+i,	-e,	-o,	+u:	Y
+a,	-c,	-i,	-e,	+o,	-u:	N
Naïve	Bayes	Classification
Linear	Regression
• The	task	of	fitting	a	
straight	line	through	a	
set	of	points
Logistic	Regression
• Measures	the	relationship	
between	the	categorical	
dependent	variable	and	
one	or	more	independent	
variables
• Credit	Scoring
• Measuring	the	success	
rates	of	marketing	
campaigns
• Predicting	the	revenues	of	
a	certain	product
Support	Vector	Machine
• Binary	classification	algorithm
• SVM	generates	a	(N — 1)	
dimensional	hyperlane to	
separate	those	points	into	2	
groups.
Ensemble	Methods
Clustering	Algorithms
Principle	Component	Analysis
Singular	Value	Decomposition
• PCA	is	actually	a	simple	
application	of	SVD
Independent	Component	Analysis
• Revealing	hidden	factors	that	
underlie	sets	of	random	
variables.
• data	variables	are	assumed	to	
be	linear	mixtures	of	some	
unknown	latent	variables,	and	
the	mixing	system	is	also	
unknown.
• The	latent	variables	are	
assumed	non-gaussian and	
mutually	independent.
• Images,	Documents
https://thinkgrowth.org/artificial-intelligence-and-you-demystifying-the-technology-landscape-21d4d34fbb10
Conclusions
• Data	is	nothing	without	insights
• Machine	learning	is	the	key	for	deriving	insights	from	data	
• Big	Data	and	Machine	Learning	has	a	huge	potential
• Mobile	First	to	AI	First	Approach
Next	Steps
• Machine	Learning	Course
• https://www.coursera.org/learn/machine-learning
• Big	Data	Course
• https://www.coursera.org/specializations/big-data
• Must	know	Machine	Learning	Algorithms
• http://www.kdnuggets.com/2016/08/10-algorithms-machine-learning-
engineers.html
• Machine	Learning	Startups
• https://angel.co/machine-learning
• Recent	Cool	Startups
• http://www.informationweek.com/big-data/software-platforms/10-cool-machine-
learning-startups-to-watch/d/d-id/1326571
References
• https://www.slideshare.net/nasrinhussain1/big-data-ppt-
31616290?from_action=save
• http://www.kdnuggets.com/2016/08/10-algorithms-machine-learning-engineers.html
• https://www.slideshare.net/larsga/introduction-to-big-datamachine-learning/40-
Top_10_machine_learning_algs1
• https://www.google.com.pk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&ved=0ahUK
Ewjx0_2Q5b7TAhXFPRQKHfiNCV8QFggmMAE&url=http%3A%2F%2Fnlp.cs.rpi.edu%2Fco
urse%2Fspring16%2Flecture10.pptx&usg=AFQjCNFFg6FbId7hqMj1lwbufcfPvb7Wmw
• https://thinkgrowth.org/artificial-intelligence-and-you-demystifying-the-technology-
landscape-21d4d34fbb10
• https://www.linkedin.com/pulse/business-intelligence-its-relationship-big-data-geekstyle

Contenu connexe

Tendances

Basics of Machine Learning
Basics of Machine LearningBasics of Machine Learning
Basics of Machine Learningbutest
 
Machine Learning
Machine LearningMachine Learning
Machine LearningGokulks007
 
Deep Learning Explained
Deep Learning ExplainedDeep Learning Explained
Deep Learning ExplainedMelanie Swan
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data ScienceSrishti44
 
Model selection and cross validation techniques
Model selection and cross validation techniquesModel selection and cross validation techniques
Model selection and cross validation techniquesVenkata Reddy Konasani
 
Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?Marina Santini
 
Hyperparameter Tuning
Hyperparameter TuningHyperparameter Tuning
Hyperparameter TuningJon Lederman
 
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...Sebastian Raschka
 
Unsupervised learning
Unsupervised learningUnsupervised learning
Unsupervised learningamalalhait
 
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | EdurekaSupervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | EdurekaEdureka!
 
Introduction to Machine Learning Classifiers
Introduction to Machine Learning ClassifiersIntroduction to Machine Learning Classifiers
Introduction to Machine Learning ClassifiersFunctional Imperative
 
Intro to modelling-supervised learning
Intro to modelling-supervised learningIntro to modelling-supervised learning
Intro to modelling-supervised learningJustin Sebok
 
Deep Learning - CNN and RNN
Deep Learning - CNN and RNNDeep Learning - CNN and RNN
Deep Learning - CNN and RNNAshray Bhandare
 
"An Introduction to Machine Learning and How to Teach Machines to See," a Pre...
"An Introduction to Machine Learning and How to Teach Machines to See," a Pre..."An Introduction to Machine Learning and How to Teach Machines to See," a Pre...
"An Introduction to Machine Learning and How to Teach Machines to See," a Pre...Edge AI and Vision Alliance
 
2.17Mb ppt
2.17Mb ppt2.17Mb ppt
2.17Mb pptbutest
 
Artificial Intelligence - Machine Learning Vs Deep Learning
Artificial Intelligence - Machine Learning Vs Deep LearningArtificial Intelligence - Machine Learning Vs Deep Learning
Artificial Intelligence - Machine Learning Vs Deep LearningLogiticks
 
Machine learning (webinar)
Machine learning (webinar)Machine learning (webinar)
Machine learning (webinar)Syed Rashid
 
Fraud detection with Machine Learning
Fraud detection with Machine LearningFraud detection with Machine Learning
Fraud detection with Machine LearningScaleway
 

Tendances (20)

Basics of Machine Learning
Basics of Machine LearningBasics of Machine Learning
Basics of Machine Learning
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Deep Learning Explained
Deep Learning ExplainedDeep Learning Explained
Deep Learning Explained
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Model selection and cross validation techniques
Model selection and cross validation techniquesModel selection and cross validation techniques
Model selection and cross validation techniques
 
Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?Lecture 1: What is Machine Learning?
Lecture 1: What is Machine Learning?
 
Hyperparameter Tuning
Hyperparameter TuningHyperparameter Tuning
Hyperparameter Tuning
 
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...An Introduction to Supervised Machine Learning and Pattern Classification: Th...
An Introduction to Supervised Machine Learning and Pattern Classification: Th...
 
Unsupervised learning
Unsupervised learningUnsupervised learning
Unsupervised learning
 
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | EdurekaSupervised vs Unsupervised vs Reinforcement Learning | Edureka
Supervised vs Unsupervised vs Reinforcement Learning | Edureka
 
Introduction to Machine Learning Classifiers
Introduction to Machine Learning ClassifiersIntroduction to Machine Learning Classifiers
Introduction to Machine Learning Classifiers
 
Intro to modelling-supervised learning
Intro to modelling-supervised learningIntro to modelling-supervised learning
Intro to modelling-supervised learning
 
Deep Learning - CNN and RNN
Deep Learning - CNN and RNNDeep Learning - CNN and RNN
Deep Learning - CNN and RNN
 
"An Introduction to Machine Learning and How to Teach Machines to See," a Pre...
"An Introduction to Machine Learning and How to Teach Machines to See," a Pre..."An Introduction to Machine Learning and How to Teach Machines to See," a Pre...
"An Introduction to Machine Learning and How to Teach Machines to See," a Pre...
 
Machine learning
Machine learningMachine learning
Machine learning
 
2.17Mb ppt
2.17Mb ppt2.17Mb ppt
2.17Mb ppt
 
Artificial Intelligence - Machine Learning Vs Deep Learning
Artificial Intelligence - Machine Learning Vs Deep LearningArtificial Intelligence - Machine Learning Vs Deep Learning
Artificial Intelligence - Machine Learning Vs Deep Learning
 
Machine learning (webinar)
Machine learning (webinar)Machine learning (webinar)
Machine learning (webinar)
 
Machine learning
Machine learning Machine learning
Machine learning
 
Fraud detection with Machine Learning
Fraud detection with Machine LearningFraud detection with Machine Learning
Fraud detection with Machine Learning
 

En vedette

Agile Software Development Scrum Vs Lean
Agile Software Development Scrum Vs LeanAgile Software Development Scrum Vs Lean
Agile Software Development Scrum Vs LeanAbdul Wahid
 
Machine Learning on Big Data
Machine Learning on Big DataMachine Learning on Big Data
Machine Learning on Big DataMax Lin
 
Deep Learning through Examples
Deep Learning through ExamplesDeep Learning through Examples
Deep Learning through ExamplesSri Ambati
 
Tutorial on Deep learning and Applications
Tutorial on Deep learning and ApplicationsTutorial on Deep learning and Applications
Tutorial on Deep learning and ApplicationsNhatHai Phan
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine LearningLior Rokach
 
Deep Learning - The Past, Present and Future of Artificial Intelligence
Deep Learning - The Past, Present and Future of Artificial IntelligenceDeep Learning - The Past, Present and Future of Artificial Intelligence
Deep Learning - The Past, Present and Future of Artificial IntelligenceLukas Masuch
 
Artificial neural network
Artificial neural networkArtificial neural network
Artificial neural networkDEEPASHRI HK
 

En vedette (7)

Agile Software Development Scrum Vs Lean
Agile Software Development Scrum Vs LeanAgile Software Development Scrum Vs Lean
Agile Software Development Scrum Vs Lean
 
Machine Learning on Big Data
Machine Learning on Big DataMachine Learning on Big Data
Machine Learning on Big Data
 
Deep Learning through Examples
Deep Learning through ExamplesDeep Learning through Examples
Deep Learning through Examples
 
Tutorial on Deep learning and Applications
Tutorial on Deep learning and ApplicationsTutorial on Deep learning and Applications
Tutorial on Deep learning and Applications
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
Deep Learning - The Past, Present and Future of Artificial Intelligence
Deep Learning - The Past, Present and Future of Artificial IntelligenceDeep Learning - The Past, Present and Future of Artificial Intelligence
Deep Learning - The Past, Present and Future of Artificial Intelligence
 
Artificial neural network
Artificial neural networkArtificial neural network
Artificial neural network
 

Similaire à Big data and machine learning for Businesses

The Data Driven Enterprise - Roadmap to Big Data & Analytics Success
The Data Driven Enterprise - Roadmap to Big Data & Analytics SuccessThe Data Driven Enterprise - Roadmap to Big Data & Analytics Success
The Data Driven Enterprise - Roadmap to Big Data & Analytics SuccessBigInsights
 
The Value of Open Data_ Softelligence Romania
The Value of Open Data_ Softelligence RomaniaThe Value of Open Data_ Softelligence Romania
The Value of Open Data_ Softelligence RomaniaSoftelligence Romania
 
big data analytics pgpmx2015
big data analytics pgpmx2015big data analytics pgpmx2015
big data analytics pgpmx2015Sanmeet Dhokay
 
Pervasive Analytics Gets Real
Pervasive Analytics Gets RealPervasive Analytics Gets Real
Pervasive Analytics Gets RealCloudera, Inc.
 
Insurance Industry Trends in 2015: #1 Big Data and Analytics
Insurance Industry Trends in 2015: #1 Big Data and AnalyticsInsurance Industry Trends in 2015: #1 Big Data and Analytics
Insurance Industry Trends in 2015: #1 Big Data and AnalyticsEuro IT Group
 
How to create a kick ass business case for accessibility
How to create a kick ass business case for accessibilityHow to create a kick ass business case for accessibility
How to create a kick ass business case for accessibilityIntopia
 
Social Media in Organizations -Limerick Chamber of Commerce - Business Week
Social Media in Organizations -Limerick Chamber of Commerce - Business Week Social Media in Organizations -Limerick Chamber of Commerce - Business Week
Social Media in Organizations -Limerick Chamber of Commerce - Business Week Stephen Jio
 
Big Data -- a free and open world
Big Data -- a free and open worldBig Data -- a free and open world
Big Data -- a free and open worldCharles Mok
 
Big data Business Use Cases
Big data  Business Use CasesBig data  Business Use Cases
Big data Business Use CasesPromptCloud
 
How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...
How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...
How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...Stephen Jio
 
Geary LSF MEDevice Healthcare Marketing Conference Presentation
Geary LSF MEDevice Healthcare Marketing Conference PresentationGeary LSF MEDevice Healthcare Marketing Conference Presentation
Geary LSF MEDevice Healthcare Marketing Conference PresentationKatie Fellenz
 
Digital Transformation Business Evolution
Digital Transformation Business Evolution Digital Transformation Business Evolution
Digital Transformation Business Evolution Digital Catapult
 
UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...
UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...
UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...MicheleNati
 
Data Governance in a big data era
Data Governance in a big data eraData Governance in a big data era
Data Governance in a big data eraPieter De Leenheer
 
Big data and analytics
Big data and analyticsBig data and analytics
Big data and analyticsAtilla Elçi
 
Data-driven marketing - expert panel
Data-driven marketing - expert panelData-driven marketing - expert panel
Data-driven marketing - expert panelCloudera, Inc.
 

Similaire à Big data and machine learning for Businesses (20)

The Data Driven Enterprise - Roadmap to Big Data & Analytics Success
The Data Driven Enterprise - Roadmap to Big Data & Analytics SuccessThe Data Driven Enterprise - Roadmap to Big Data & Analytics Success
The Data Driven Enterprise - Roadmap to Big Data & Analytics Success
 
The Value of Open Data_ Softelligence Romania
The Value of Open Data_ Softelligence RomaniaThe Value of Open Data_ Softelligence Romania
The Value of Open Data_ Softelligence Romania
 
big data analytics pgpmx2015
big data analytics pgpmx2015big data analytics pgpmx2015
big data analytics pgpmx2015
 
Trends in data analytics
Trends in data analyticsTrends in data analytics
Trends in data analytics
 
Pervasive Analytics Gets Real
Pervasive Analytics Gets RealPervasive Analytics Gets Real
Pervasive Analytics Gets Real
 
Insurance Industry Trends in 2015: #1 Big Data and Analytics
Insurance Industry Trends in 2015: #1 Big Data and AnalyticsInsurance Industry Trends in 2015: #1 Big Data and Analytics
Insurance Industry Trends in 2015: #1 Big Data and Analytics
 
How to create a kick ass business case for accessibility
How to create a kick ass business case for accessibilityHow to create a kick ass business case for accessibility
How to create a kick ass business case for accessibility
 
Social Media in Organizations -Limerick Chamber of Commerce - Business Week
Social Media in Organizations -Limerick Chamber of Commerce - Business Week Social Media in Organizations -Limerick Chamber of Commerce - Business Week
Social Media in Organizations -Limerick Chamber of Commerce - Business Week
 
Big Data -- a free and open world
Big Data -- a free and open worldBig Data -- a free and open world
Big Data -- a free and open world
 
Big data Business Use Cases
Big data  Business Use CasesBig data  Business Use Cases
Big data Business Use Cases
 
How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...
How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...
How Dell aligns Social within the Organisation - PRII Annual Conference - PR ...
 
Geary LSF MEDevice Healthcare Marketing Conference Presentation
Geary LSF MEDevice Healthcare Marketing Conference PresentationGeary LSF MEDevice Healthcare Marketing Conference Presentation
Geary LSF MEDevice Healthcare Marketing Conference Presentation
 
Digital Transformation Business Evolution
Digital Transformation Business Evolution Digital Transformation Business Evolution
Digital Transformation Business Evolution
 
UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...
UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...
UNICOM Conference on Digital Transformation - The Trust Framework Initiative ...
 
Data Governance in a big data era
Data Governance in a big data eraData Governance in a big data era
Data Governance in a big data era
 
Big data and analytics
Big data and analyticsBig data and analytics
Big data and analytics
 
Data-driven marketing - expert panel
Data-driven marketing - expert panelData-driven marketing - expert panel
Data-driven marketing - expert panel
 
Big Data in Financial Services
Big Data in Financial ServicesBig Data in Financial Services
Big Data in Financial Services
 
The Tech-Minded CFO
The Tech-Minded CFO The Tech-Minded CFO
The Tech-Minded CFO
 
The Rise of Data Science Master Class - Joe Nguyen, H Plus
The Rise of Data Science Master Class - Joe Nguyen, H PlusThe Rise of Data Science Master Class - Joe Nguyen, H Plus
The Rise of Data Science Master Class - Joe Nguyen, H Plus
 

Dernier

Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Valters Lauzums
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Delhi Call girls
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysismanisha194592
 
hybrid Seed Production In Chilli & Capsicum.pptx
hybrid Seed Production In Chilli & Capsicum.pptxhybrid Seed Production In Chilli & Capsicum.pptx
hybrid Seed Production In Chilli & Capsicum.pptx9to5mart
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...amitlee9823
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...amitlee9823
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Detecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachDetecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachBoston Institute of Analytics
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...amitlee9823
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Standamitlee9823
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...SUHANI PANDEY
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramMoniSankarHazra
 

Dernier (20)

Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
 
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
Digital Advertising Lecture for Advanced Digital & Social Media Strategy at U...
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
hybrid Seed Production In Chilli & Capsicum.pptx
hybrid Seed Production In Chilli & Capsicum.pptxhybrid Seed Production In Chilli & Capsicum.pptx
hybrid Seed Production In Chilli & Capsicum.pptx
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men  🔝malwa🔝   Escorts Ser...
➥🔝 7737669865 🔝▻ malwa Call-girls in Women Seeking Men 🔝malwa🔝 Escorts Ser...
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Detecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning ApproachDetecting Credit Card Fraud: A Machine Learning Approach
Detecting Credit Card Fraud: A Machine Learning Approach
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Anomaly detection and data imputation within time series
Anomaly detection and data imputation within time seriesAnomaly detection and data imputation within time series
Anomaly detection and data imputation within time series
 

Big data and machine learning for Businesses