SlideShare a Scribd company logo
www.eleks.comwww.eleks.com
Machine Learning overview:
applications, problems, approaches, services
Mykhailo Koval
Database Developer/Tech Lead, Eleks
mykhailo.koval@eleks.com
Abstract
Machine learning is the science of getting computers to act without being explicitly
programmed. In the past decade, machine learning has given us self-driving cars,
practical speech recognition, effective web search, and a vastly improved understanding
of the human genome. Machine learning is so pervasive today that you probably use it
dozens of times a day without knowing it.
We will review some modern machine learning applications, understand
variety of machine learning problem definitions, go through particular approaches
of solving machine learning tasks.
This year 2015 Amazon and Microsoft introduced services to perform machine
learning tasks in cloud. Microsoft Azure Machine Learning offers a streamlined
experience for all data scientist skill levels, from setting up with only a web browser, to
using drag and drop gestures and simple data flow graphs to set up experiments.
We will briefly review Azure ML Studio features and run machine learning
experiment.
Agenda
● Machine Learning definition
● Applications Overview
● Types of Problems and Tasks
● Machine Learning as a Service (Azure)
● Machine Learning experiment in Azure ML
Studio
Machine Learning
Definition
Machine Learning
Machine Learning (ML)
focuses on the
development of
computer programs
that can teach
themselves to grow
and change when
exposed to new data.
Machine Learning vs Data Mining
Focuses on the
discovery of
(previously) unknown
properties in the data
Focuses on prediction,
based on known
properties learned from
the training data
Data Mining
Extracts
data for
human
compre-
hension
Machine Learning
Uses training data
to improve the
program's future
actions.
Reproduces
known knowledge.
Machine Learning
Applications
Computer vision
Optical
Character
Recognition
(OCR)
Automatic
Number
Plate
Recognition
Face detection http://www.projectoxford.ai/demo/face#detection
Credit card fraud detection
Spam filtering
Medical diagnosis
Natural language processing
Recommender system
Junior, a robotic
Volkswagen
Passat, at Stanford
University in
October 2009
Autonomous
Vehicles
Machine Learning
Problems
Reinforcement
learning
Machine learning problem categories
Three broad categories, depending on the nature
of the learning "signal" or "feedback" available to
a learning system:
Supervised
learning
Unsupervised
learning
Supervised learning
Supervised learning
Supervised learning goal
The computer is presented with
example inputs and their desired
outputs, given by a "teacher", and
the goal is to learn a general rule
that maps inputs to outputs
Problem definition
x11 x12 … x1n
x21 x22 … x2n
x31 x32 … x3n
… … … …
xm1 xm2 … xmn
y1
y2
y3
ym
Training
Examples
“input” variable / features “output” variable
h(x) = h(x1, x2, …, xn) – hypothesis function and
solution of a supervised learning problem, where
h(x) ≈ y (as close as possible)
Regression problem
Predicting results
within a continuous
output, meaning that
we are trying to map
input variables to
some continuous
function.
Linear regression
hθ(x) – linear
hypothesis function,
m – number of training
examples,
Θ – vector of
coefficients of the
linear function hθ(x)
Cost Function
Classification problem
Predicting results in
a discrete output.
In other words, we
are trying to map
input variables into
discrete categories.
Supervised learning diagram
Pre-
Processing
Sampling
Training
Dataset
Pre-
Processing
Learning
Algorithm
Training
Parameter
Optimization
Post-
Processing
Final
Model
Feature Selection
Feature Scaling
Dimensionality
Reduction
Test
Dataset New Data
Missing
Data
Feature
Extraction
Performance
Metrics
Model
Selection
Split
Cross-Validation
Refinement
Final Model Evaluation
Prediction
Unsupervised learning
 No labels are given to the learning algorithm.
 The goal is to find hidden structure in its
input.
 Since the examples given to the learner are
unlabeled, there is no error or reward
signal to evaluate a potential solution
Supervised vs Unsupervised learning
Problem definition
x11 x12 … x1n
x21 x22 … x2n
x31 x32 … x3n
… … … …
xm1 xm2 … xmn
y1
y2
y3
ym
Training
Examples
“input” variable / features no “output” variable
So no hypothesis function!
Unsupervised learning examples
Social network
analysis
Astronomical data
analysis
Unsupervised learning examples
Market segmentation
Clustering
The result of a
cluster analysis
shown as the
coloring of the
squares into
three clusters
Clustering methods (over 100)
k-Means
(Centroid-based)
Expectation-Maximization
(Distribution-based)
DBSCAN
(Density-based)
Reinforcement learning
A Toyota Prius modified by Google
to operate as a driverless car.
Reinforcement learning
Performing a certain goal (such as
driving a vehicle) in a dynamic
environment, without a teacher
explicitly telling it whether it has come
close to its goal or not.
Reinforcement learning differences
 No correct input/output pairs
 Sub-optimal actions aren’t explicitly corrected
 Instead it maximizes some notion of
cumulative reward
 There is a focus on on-line performance
 Finds a balance between exploration (of
uncharted territory) and exploitation (of
current knowledge)
Basic reinforcement learning model
 a set of environment states
 a set of actions
 rules of transitioning between states
 rules that determine the scalar immediate
reward of a transition
 rules that describe what the agent observes
Machine Learning
As a Service
(Azure)
Machine Learning evolution
SQL
Server
Data
Mining
Spam
filtration
Gestures
under-
standing
in
Microsoft
Kinect
Azure
Machine
Learning
Using
Data
Mining in
search
engines
Bing Maps
started to
use ML for
traffic
estimate
Voice
recognition
1999 201220082004 201420102005
Azure Machine Learning
HDInsight
Azure Storage
Desktop Data
PowerBI / DashboardsMobile AppsWeb Apps
ML API service Developer
ML Studio Data Analyst
Azure
ML Studio
https://studio.azureml.net
Machine Learning
Experiment
On April 15, 1912, during her
maiden voyage, the Titanic
sank after colliding with an
iceberg, killing 1502 out of
2224 passengers and crew.
https://www.kaggle.com/c/titanic
PassengerId Survived Pclass Name Sex Age SibSp Parch Ticket Fare Cabin Embarked
1 0 3
Braund, Mr. Owen
Harris
male 22 1 0 A/5 21171 7.25 S
2 1 1
Cumings, Mrs. John
Bradley (Florence
Briggs Thayer)
female 38 1 0 PC 17599 71.2833 C85 C
3 1 3 Heikkinen, Miss. Laina female 26 0 0
STON/O2.
3101282
7.925 S
4 1 1
Futrelle, Mrs. Jacques
Heath (Lily May Peel)
female 35 1 0 113803 53.1 C123 S
5 0 3
Allen, Mr. William
Henry
male 35 0 0 373450 8.05 S
6 0 3 Moran, Mr. James male 0 0 330877 8.4583 Q
rows
891
columns
12Titanic Dataset
https://www.kaggle.com/c/titanic/data
sibsp - Number of Siblings/Spouses Aboard
parch - Number of Parents/Children Aboard
embarked - Port of Embarkation:
C = Cherbourg
Q = Queenstown
S = Southampton
Titanic Survival
Predictor
http://demos.datasciencedojo.com/demo/titanic
Let’s experiment!
https://studio.azureml.net
Recommended courses
https://www.coursera.org/learn/machine-learning/home/info#
Machine
Learning
by Stanford University
Andrew Ng
 Associate Professor, Stanford
University;
 Chief Scientist, Baidu;
 Chairman and Co-founder, Coursera
Useful Links
 Free eBook: Microsoft Azure Essentials: Azure Machine Learning
http://blogs.msdn.com/b/microsoft_press/archive/2015/04/15/free-ebook-microsoft-azure-
essentials-azure-machine-learning.aspx
 Azure Machine Learning для Data Scientist
http://habrahabr.ru/company/microsoft/blog/254637/
 Azure Machine Learning: Get started now
http://azure.microsoft.com/uk-ua/services/machine-learning/
 Tutorial: Building a classification model in Azure ML
http://gallery.azureml.net/Experiment/01b2765fa75147ce99679e18482d280f
www.eleks.comwww.eleks.com
Machine Learning overview:
applications, problems, approaches, services
Mykhailo Koval
Database Developer/Tech Lead, Eleks
mykhailo.koval@eleks.com

More Related Content

What's hot

Machine learning basics
Machine learning basics Machine learning basics
Machine learning basics
Akanksha Bali
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
Rahul Kumar
 
ML Basics
ML BasicsML Basics
ML Basics
SrujanaMerugu1
 
Machine learning
Machine learningMachine learning
Machine learning
Tushar Nikam
 
Machine Learning ppt
Machine Learning pptMachine Learning ppt
Machine Learning ppt
Student Conscious Club
 
What is Deep Learning?
What is Deep Learning?What is Deep Learning?
What is Deep Learning?
NVIDIA
 
Machine learning
Machine learning Machine learning
Machine learning
Saurabh Agrawal
 
Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning
Aakash Chotrani
 
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | EdurekaMachine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
Edureka!
 
Machine learning (webinar)
Machine learning (webinar)Machine learning (webinar)
Machine learning (webinar)
Syed Rashid
 
General introduction to AI ML DL DS
General introduction to AI ML DL DSGeneral introduction to AI ML DL DS
General introduction to AI ML DL DS
Roopesh Kohad
 
End-to-End Machine Learning Project
End-to-End Machine Learning ProjectEnd-to-End Machine Learning Project
End-to-End Machine Learning Project
Eng Teong Cheah
 
An introduction to Deep Learning
An introduction to Deep LearningAn introduction to Deep Learning
An introduction to Deep Learning
Julien SIMON
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
Ganesh Satpute
 
Intro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning PresentationIntro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning Presentation
Ankit Gupta
 
Machine Learning presentation.
Machine Learning presentation.Machine Learning presentation.
Machine Learning presentation.butest
 
The fundamentals of Machine Learning
The fundamentals of Machine LearningThe fundamentals of Machine Learning
The fundamentals of Machine Learning
Hichem Felouat
 
Deep learning - A Visual Introduction
Deep learning - A Visual IntroductionDeep learning - A Visual Introduction
Deep learning - A Visual Introduction
Lukas Masuch
 
introduction to machin learning
introduction to machin learningintroduction to machin learning
introduction to machin learning
nilimapatel6
 
Machine Learning and its Applications
Machine Learning and its ApplicationsMachine Learning and its Applications
Machine Learning and its Applications
Dr Ganesh Iyer
 

What's hot (20)

Machine learning basics
Machine learning basics Machine learning basics
Machine learning basics
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
ML Basics
ML BasicsML Basics
ML Basics
 
Machine learning
Machine learningMachine learning
Machine learning
 
Machine Learning ppt
Machine Learning pptMachine Learning ppt
Machine Learning ppt
 
What is Deep Learning?
What is Deep Learning?What is Deep Learning?
What is Deep Learning?
 
Machine learning
Machine learning Machine learning
Machine learning
 
Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning
 
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | EdurekaMachine Learning in 10 Minutes | What is Machine Learning? | Edureka
Machine Learning in 10 Minutes | What is Machine Learning? | Edureka
 
Machine learning (webinar)
Machine learning (webinar)Machine learning (webinar)
Machine learning (webinar)
 
General introduction to AI ML DL DS
General introduction to AI ML DL DSGeneral introduction to AI ML DL DS
General introduction to AI ML DL DS
 
End-to-End Machine Learning Project
End-to-End Machine Learning ProjectEnd-to-End Machine Learning Project
End-to-End Machine Learning Project
 
An introduction to Deep Learning
An introduction to Deep LearningAn introduction to Deep Learning
An introduction to Deep Learning
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
 
Intro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning PresentationIntro/Overview on Machine Learning Presentation
Intro/Overview on Machine Learning Presentation
 
Machine Learning presentation.
Machine Learning presentation.Machine Learning presentation.
Machine Learning presentation.
 
The fundamentals of Machine Learning
The fundamentals of Machine LearningThe fundamentals of Machine Learning
The fundamentals of Machine Learning
 
Deep learning - A Visual Introduction
Deep learning - A Visual IntroductionDeep learning - A Visual Introduction
Deep learning - A Visual Introduction
 
introduction to machin learning
introduction to machin learningintroduction to machin learning
introduction to machin learning
 
Machine Learning and its Applications
Machine Learning and its ApplicationsMachine Learning and its Applications
Machine Learning and its Applications
 

Viewers also liked

An overview of machine learning
An overview of machine learningAn overview of machine learning
An overview of machine learning
drcfetr
 
Distributed machine learning
Distributed machine learningDistributed machine learning
Distributed machine learning
Stanley Wang
 
Devoxx France 2015 - UX : Le Poids des Mots - 1.1
Devoxx France 2015 - UX : Le Poids des Mots - 1.1Devoxx France 2015 - UX : Le Poids des Mots - 1.1
Devoxx France 2015 - UX : Le Poids des Mots - 1.1
Grégory Weinbach
 
Senior Capstone - Nasogastruc Intubation Training
Senior Capstone - Nasogastruc Intubation TrainingSenior Capstone - Nasogastruc Intubation Training
Senior Capstone - Nasogastruc Intubation TrainingKonrad Wolfmeyer
 
Generation Y Study In China Whitepaper
Generation Y Study In China WhitepaperGeneration Y Study In China Whitepaper
Generation Y Study In China Whitepaper
Steven Chen
 
افتتاح مسجد الشيخة عفراء بنت حامد في الشامخة
افتتاح مسجد الشيخة عفراء بنت حامد في الشامخةافتتاح مسجد الشيخة عفراء بنت حامد في الشامخة
افتتاح مسجد الشيخة عفراء بنت حامد في الشامخةDR Nihal kamel
 
2010 Year of Chopin
2010 Year of Chopin2010 Year of Chopin
2010 Year of ChopinJH4
 
지리산콘도 미국비자신청방법
지리산콘도 미국비자신청방법지리산콘도 미국비자신청방법
지리산콘도 미국비자신청방법
dehryes
 
被遮蔽的歷史
被遮蔽的歷史被遮蔽的歷史
被遮蔽的歷史
kepomalaysia
 
Presentacion de portafolio
Presentacion de portafolioPresentacion de portafolio
Presentacion de portafolio
Glenda Ch
 
8051f044
8051f0448051f044
ビアマジが学校にやってくる!プロジェクト
ビアマジが学校にやってくる!プロジェクトビアマジが学校にやってくる!プロジェクト
ビアマジが学校にやってくる!プロジェクト
stucon
 
ATCC交點#6 - 雨群 - Lunch time
ATCC交點#6 - 雨群 - Lunch timeATCC交點#6 - 雨群 - Lunch time
ATCC交點#6 - 雨群 - Lunch time交點
 
America's Least Affordable Places to Live
America's Least Affordable Places to LiveAmerica's Least Affordable Places to Live
America's Least Affordable Places to Live
Trulia
 
Responsive Design mit Drupal
Responsive Design mit DrupalResponsive Design mit Drupal
Responsive Design mit Drupal
Nicolai Schwarz
 
Q3 2014 Investor Factbook
Q3 2014 Investor FactbookQ3 2014 Investor Factbook
Q3 2014 Investor FactbookTMUS_IR
 
Social media in higher ed may 2010
Social media in higher ed may 2010Social media in higher ed may 2010
Social media in higher ed may 2010Lisa Fisher
 

Viewers also liked (20)

An overview of machine learning
An overview of machine learningAn overview of machine learning
An overview of machine learning
 
Distributed machine learning
Distributed machine learningDistributed machine learning
Distributed machine learning
 
Zaragoza turismo-100
Zaragoza turismo-100Zaragoza turismo-100
Zaragoza turismo-100
 
Devoxx France 2015 - UX : Le Poids des Mots - 1.1
Devoxx France 2015 - UX : Le Poids des Mots - 1.1Devoxx France 2015 - UX : Le Poids des Mots - 1.1
Devoxx France 2015 - UX : Le Poids des Mots - 1.1
 
Senior Capstone - Nasogastruc Intubation Training
Senior Capstone - Nasogastruc Intubation TrainingSenior Capstone - Nasogastruc Intubation Training
Senior Capstone - Nasogastruc Intubation Training
 
Generation Y Study In China Whitepaper
Generation Y Study In China WhitepaperGeneration Y Study In China Whitepaper
Generation Y Study In China Whitepaper
 
افتتاح مسجد الشيخة عفراء بنت حامد في الشامخة
افتتاح مسجد الشيخة عفراء بنت حامد في الشامخةافتتاح مسجد الشيخة عفراء بنت حامد في الشامخة
افتتاح مسجد الشيخة عفراء بنت حامد في الشامخة
 
2010 Year of Chopin
2010 Year of Chopin2010 Year of Chopin
2010 Year of Chopin
 
지리산콘도 미국비자신청방법
지리산콘도 미국비자신청방법지리산콘도 미국비자신청방법
지리산콘도 미국비자신청방법
 
被遮蔽的歷史
被遮蔽的歷史被遮蔽的歷史
被遮蔽的歷史
 
Presentacion de portafolio
Presentacion de portafolioPresentacion de portafolio
Presentacion de portafolio
 
8051f044
8051f0448051f044
8051f044
 
ビアマジが学校にやってくる!プロジェクト
ビアマジが学校にやってくる!プロジェクトビアマジが学校にやってくる!プロジェクト
ビアマジが学校にやってくる!プロジェクト
 
ATCC交點#6 - 雨群 - Lunch time
ATCC交點#6 - 雨群 - Lunch timeATCC交點#6 - 雨群 - Lunch time
ATCC交點#6 - 雨群 - Lunch time
 
Pramod resume
Pramod resumePramod resume
Pramod resume
 
America's Least Affordable Places to Live
America's Least Affordable Places to LiveAmerica's Least Affordable Places to Live
America's Least Affordable Places to Live
 
Daniel Hibbert - Reward in Local Government - PPMA Seminar April 2012
Daniel Hibbert - Reward in Local Government - PPMA Seminar April 2012Daniel Hibbert - Reward in Local Government - PPMA Seminar April 2012
Daniel Hibbert - Reward in Local Government - PPMA Seminar April 2012
 
Responsive Design mit Drupal
Responsive Design mit DrupalResponsive Design mit Drupal
Responsive Design mit Drupal
 
Q3 2014 Investor Factbook
Q3 2014 Investor FactbookQ3 2014 Investor Factbook
Q3 2014 Investor Factbook
 
Social media in higher ed may 2010
Social media in higher ed may 2010Social media in higher ed may 2010
Social media in higher ed may 2010
 

Similar to Machine Learning Overview

Keynote at IWLS 2017
Keynote at IWLS 2017Keynote at IWLS 2017
Keynote at IWLS 2017
Manish Pandey
 
Introduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-LearnIntroduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-Learn
Benjamin Bengfort
 
Artificial Intelligence - Anna Uni -v1.pdf
Artificial Intelligence - Anna Uni -v1.pdfArtificial Intelligence - Anna Uni -v1.pdf
Artificial Intelligence - Anna Uni -v1.pdf
Jayanti Prasad Ph.D.
 
AI and Deep Learning
AI and Deep Learning AI and Deep Learning
AI and Deep Learning
Subrat Panda, PhD
 
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
Bruno Capuano
 
2021 06 19 ms student ambassadors nigeria ml net 01 slide-share
2021 06 19 ms student ambassadors nigeria ml net 01   slide-share2021 06 19 ms student ambassadors nigeria ml net 01   slide-share
2021 06 19 ms student ambassadors nigeria ml net 01 slide-share
Bruno Capuano
 
Advanced AI for People in a Hurry
Advanced AI for People in a HurryAdvanced AI for People in a Hurry
Advanced AI for People in a Hurry
Scott Penberthy
 
Machine learning for sensor Data Analytics
Machine learning for sensor Data AnalyticsMachine learning for sensor Data Analytics
Machine learning for sensor Data Analytics
MATLABISRAEL
 
Designing Artificial Intelligence
Designing Artificial IntelligenceDesigning Artificial Intelligence
Designing Artificial Intelligence
David Chou
 
Introduction to ML.NET
Introduction to ML.NETIntroduction to ML.NET
Introduction to ML.NET
Gianni Rosa Gallina
 
Big Data Meetup #7
Big Data Meetup #7Big Data Meetup #7
Big Data Meetup #7
Paul Lo
 
Strata London - Deep Learning 05-2015
Strata London - Deep Learning 05-2015Strata London - Deep Learning 05-2015
Strata London - Deep Learning 05-2015
Turi, Inc.
 
OReilly AI Transfer Learning
OReilly AI Transfer LearningOReilly AI Transfer Learning
OReilly AI Transfer Learning
Danielle Dean
 
Machine learning – 101
Machine learning – 101Machine learning – 101
Machine learning – 101
Behzad Altaf
 
A Few Useful Things to Know about Machine Learning
A Few Useful Things to Know about Machine LearningA Few Useful Things to Know about Machine Learning
A Few Useful Things to Know about Machine Learning
nep_test_account
 
Data Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup GroupData Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup GroupDoug Needham
 
Cloudera Data Science Challenge
Cloudera Data Science ChallengeCloudera Data Science Challenge
Cloudera Data Science Challenge
Mark Nichols, P.E.
 
Meetup 29042015
Meetup 29042015Meetup 29042015
Meetup 29042015lbishal
 
Google Developer Groups Talk - TensorFlow
Google Developer Groups Talk - TensorFlowGoogle Developer Groups Talk - TensorFlow
Google Developer Groups Talk - TensorFlow
Harini Gunabalan
 
Regression with Microsoft Azure & Ms Excel
Regression with Microsoft Azure & Ms ExcelRegression with Microsoft Azure & Ms Excel
Regression with Microsoft Azure & Ms Excel
Dr. Abdul Ahad Abro
 

Similar to Machine Learning Overview (20)

Keynote at IWLS 2017
Keynote at IWLS 2017Keynote at IWLS 2017
Keynote at IWLS 2017
 
Introduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-LearnIntroduction to Machine Learning with SciKit-Learn
Introduction to Machine Learning with SciKit-Learn
 
Artificial Intelligence - Anna Uni -v1.pdf
Artificial Intelligence - Anna Uni -v1.pdfArtificial Intelligence - Anna Uni -v1.pdf
Artificial Intelligence - Anna Uni -v1.pdf
 
AI and Deep Learning
AI and Deep Learning AI and Deep Learning
AI and Deep Learning
 
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
2021 02 23 MVP Fusion Getting Started with Machine Learning.Net and AutoML
 
2021 06 19 ms student ambassadors nigeria ml net 01 slide-share
2021 06 19 ms student ambassadors nigeria ml net 01   slide-share2021 06 19 ms student ambassadors nigeria ml net 01   slide-share
2021 06 19 ms student ambassadors nigeria ml net 01 slide-share
 
Advanced AI for People in a Hurry
Advanced AI for People in a HurryAdvanced AI for People in a Hurry
Advanced AI for People in a Hurry
 
Machine learning for sensor Data Analytics
Machine learning for sensor Data AnalyticsMachine learning for sensor Data Analytics
Machine learning for sensor Data Analytics
 
Designing Artificial Intelligence
Designing Artificial IntelligenceDesigning Artificial Intelligence
Designing Artificial Intelligence
 
Introduction to ML.NET
Introduction to ML.NETIntroduction to ML.NET
Introduction to ML.NET
 
Big Data Meetup #7
Big Data Meetup #7Big Data Meetup #7
Big Data Meetup #7
 
Strata London - Deep Learning 05-2015
Strata London - Deep Learning 05-2015Strata London - Deep Learning 05-2015
Strata London - Deep Learning 05-2015
 
OReilly AI Transfer Learning
OReilly AI Transfer LearningOReilly AI Transfer Learning
OReilly AI Transfer Learning
 
Machine learning – 101
Machine learning – 101Machine learning – 101
Machine learning – 101
 
A Few Useful Things to Know about Machine Learning
A Few Useful Things to Know about Machine LearningA Few Useful Things to Know about Machine Learning
A Few Useful Things to Know about Machine Learning
 
Data Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup GroupData Science Challenge presentation given to the CinBITools Meetup Group
Data Science Challenge presentation given to the CinBITools Meetup Group
 
Cloudera Data Science Challenge
Cloudera Data Science ChallengeCloudera Data Science Challenge
Cloudera Data Science Challenge
 
Meetup 29042015
Meetup 29042015Meetup 29042015
Meetup 29042015
 
Google Developer Groups Talk - TensorFlow
Google Developer Groups Talk - TensorFlowGoogle Developer Groups Talk - TensorFlow
Google Developer Groups Talk - TensorFlow
 
Regression with Microsoft Azure & Ms Excel
Regression with Microsoft Azure & Ms ExcelRegression with Microsoft Azure & Ms Excel
Regression with Microsoft Azure & Ms Excel
 

Recently uploaded

The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
mikeeftimakis1
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
sonjaschweigert1
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
DianaGray10
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
James Anderson
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
Uni Systems S.M.S.A.
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
Prayukth K V
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
Neo4j
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
Pierluigi Pugliese
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
Kari Kakkonen
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Aggregage
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
ThomasParaiso2
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
Alpen-Adria-Universität
 

Recently uploaded (20)

The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Introduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - CybersecurityIntroduction to CHERI technology - Cybersecurity
Introduction to CHERI technology - Cybersecurity
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...A tale of scale & speed: How the US Navy is enabling software delivery from l...
A tale of scale & speed: How the US Navy is enabling software delivery from l...
 
UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5UiPath Test Automation using UiPath Test Suite series, part 5
UiPath Test Automation using UiPath Test Suite series, part 5
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
Alt. GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using ...
 
Microsoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdfMicrosoft - Power Platform_G.Aspiotis.pdf
Microsoft - Power Platform_G.Aspiotis.pdf
 
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 previewState of ICS and IoT Cyber Threat Landscape Report 2024 preview
State of ICS and IoT Cyber Threat Landscape Report 2024 preview
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024GraphSummit Singapore | The Art of the  Possible with Graph - Q2 2024
GraphSummit Singapore | The Art of the Possible with Graph - Q2 2024
 
By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024By Design, not by Accident - Agile Venture Bolzano 2024
By Design, not by Accident - Agile Venture Bolzano 2024
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
Climate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing DaysClimate Impact of Software Testing at Nordic Testing Days
Climate Impact of Software Testing at Nordic Testing Days
 
Generative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to ProductionGenerative AI Deep Dive: Advancing from Proof of Concept to Production
Generative AI Deep Dive: Advancing from Proof of Concept to Production
 
GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...GridMate - End to end testing is a critical piece to ensure quality and avoid...
GridMate - End to end testing is a critical piece to ensure quality and avoid...
 
Video Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the FutureVideo Streaming: Then, Now, and in the Future
Video Streaming: Then, Now, and in the Future
 

Machine Learning Overview