Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Machine Learning 101
Search
Ali Akbar S.
December 18, 2017
Education
1
110
Machine Learning 101
Ali Akbar S.
December 18, 2017
Tweet
Share
More Decks by Ali Akbar S.
See All by Ali Akbar S.
Pattern Recognition in Industry
aliakbars
0
79
UKARA 1.0 Challenge Track 1
aliakbars
1
76
Introduction to Artificial Intelligence
aliakbars
2
330
Feature Selection & Extraction
aliakbars
0
100
Introduction to Natural Language Processing
aliakbars
0
57
Machine Learning for Healthcare
aliakbars
0
54
Pemanfaatan Big Data dalam Ekonomi Indonesia Berbasis Digital
aliakbars
0
59
How Technology Can Change Food Logistics
aliakbars
0
56
Data Science for Business
aliakbars
2
90
Other Decks in Education
See All in Education
Kaggle 班ができるまで
abap34
1
190
セキュリティ・キャンプ全国大会2024 S17 探査機自作ゼミ 事前学習・当日資料
sksat
3
810
H5P-työkalut
matleenalaakso
4
35k
Adobe Express
matleenalaakso
1
7.4k
勉強する必要ある?
mineo_matsuya
2
1.2k
Qualtricsで相互作用実験する「SMARTRIQS」入門編
kscscr
0
300
Tableau トレーニング【株式会社ニジボックス】
nbkouhou
0
17k
(2024) Couper un gâteau... sans connaître le nombre de convives
mansuy
2
120
Padlet opetuksessa
matleenalaakso
4
12k
子どものためのプログラミング道場『CoderDojo』〜法人提携例〜 / Partnership with CoderDojo Japan
coderdojojapan
4
14k
自己紹介 / who-am-i
yasulab
2
4.1k
英語学習から海外発表までの流れ
yasulab
18
4.2k
Featured
See All Featured
Dealing with People You Can't Stand - Big Design 2015
cassininazir
364
22k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
131
33k
Building Your Own Lightsaber
phodgson
102
6.1k
Build The Right Thing And Hit Your Dates
maggiecrowley
32
2.4k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Designing on Purpose - Digital PM Summit 2013
jponch
115
6.9k
Large-scale JavaScript Application Architecture
addyosmani
510
110k
Ruby is Unlike a Banana
tanoku
96
11k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
31
2.7k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
27
1.9k
Mobile First: as difficult as doing things right
swwweet
222
8.9k
Designing for Performance
lara
604
68k
Transcript
Machine Learning 101 Ali Akbar Septiandri Universitas Al Azhar Indonesia
Previously...
Cross Industry Standard Process for Data Mining (CRISP-DM)
Data Science Venn Diagram
What is the role of machine learning algorithms?
“Fundamentally, machine learning involves building mathematical models to help understand
data.” - Jake VanderPlas
Tasks in Machine Learning 1. Predicting stock price 2. Differentiating
cat vs. dog pictures 3. Spam identification 4. Community detection 5. Mimicking famous painting style 6. Mastering the game of go and chess 7. etc.
Task Categories 1. Supervised learning a. Predicting stock price b.
Differentiating cat vs. dog pictures c. Spam identification 2. Unsupervised learning a. Community detection b. Mimicking famous painting style 3. Reinforcement learning a. Mastering the game of go and chess
- Iris Dataset - by R.A. Fisher (1936) - 4
attributes: sepal length, sepal width, petal length, petal width - 3 labels: Iris Setosa, Iris Versicolour, Iris Virginica Let’s take an example dataset...
None
None
None
None
None
Nearest Neighbour - Finding the closest reference - What does
it mean by “closest”? - Humans comprehend visualisations very well - Can computers do the same?
At the lowest level, computers only understand 0 or 1
Euclidean Distance
Euclidean Distance
Are you sure?
1. Find some k closest references 2. Use majority vote
3. We need to compute pairwise distances k-Nearest Neighbours
None
Conventional statistics can not do that
We need high computational power
What if we only want to see the subgroups in
the data?
Clustering - Finding subgroups in the data - Your neighbours
in the same housing complex regardless of their class - Unsupervised learning
None
k-Means Clustering
k-Means Clustering 1. Uses Euclidean distance as well 2. k
= number of clusters 3. Centroids to represent clusters
None
None
None
Deep Learning
None
Digit Recognition MNIST Dataset
Classifying objects from pictures [Krizhevsky, 2009]
None
None
A neural network [Nielsen, 2016]
Logistic Regression y = σ(w 0 + w 1 x
1 )
Predicting traffic jams from CCTV pictures
Mimicking famous paintings
None
Other Machine Learning Algorithms
Naive Bayes
Decision trees
Linear regression with polynomial basis functions
“No free lunch”
Thank you