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
120
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
100
UKARA 1.0 Challenge Track 1
aliakbars
1
95
Introduction to Artificial Intelligence
aliakbars
2
390
Feature Selection & Extraction
aliakbars
0
190
Introduction to Natural Language Processing
aliakbars
0
81
Machine Learning for Healthcare
aliakbars
0
71
Pemanfaatan Big Data dalam Ekonomi Indonesia Berbasis Digital
aliakbars
0
120
How Technology Can Change Food Logistics
aliakbars
0
150
Data Science for Business
aliakbars
2
150
Other Decks in Education
See All in Education
高校数学とJulia言語
shimizudan
0
130
滑空スポーツ講習会2025(実技講習)EMFT講習 実施要領/JSA EMFT 2025 procedure
jsaseminar
0
140
Introduction - Lecture 1 - Advanced Topics in Big Data (4023256FNR)
signer
PRO
2
2.3k
SJRC 2526
cbtlibrary
1
220
Introduction - Lecture 1 - Information Visualisation (4019538FNR)
signer
PRO
0
5.3k
Multimodal Interaction - Lecture 3 - Next Generation User Interfaces (4018166FNR)
signer
PRO
0
2k
IHLヘルスケアリーダーシップ研究会17期説明資料
ihlhealthcareleadership
0
2k
LotusScript でエージェント情報を出力してみた
harunakano
0
140
栃木にいても「だいじ」だっぺ〜! 栃木&全国アジャイルコミュニティへの参加・運営の魅力
sasakendayo
1
170
心理学を学び活用することで偉大なスクラムマスターを目指す − 大学とコミュニティを組み合わせた学びの循環 / Becoming a great Scrum Master by learning and using psychology
psj59129
1
1.9k
Surviving the surfaceless web
jonoalderson
0
720
HCI Research Methods - Lecture 7 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
1.4k
Featured
See All Featured
Bridging the Design Gap: How Collaborative Modelling removes blockers to flow between stakeholders and teams @FastFlow conf
baasie
0
470
My Coaching Mixtape
mlcsv
0
67
Reflections from 52 weeks, 52 projects
jeffersonlam
356
21k
How STYLIGHT went responsive
nonsquared
100
6k
Producing Creativity
orderedlist
PRO
348
40k
The untapped power of vector embeddings
frankvandijk
2
1.6k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
64
How to Ace a Technical Interview
jacobian
281
24k
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.7k
How to Get Subject Matter Experts Bought In and Actively Contributing to SEO & PR Initiatives.
livdayseo
0
81
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