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
93
Introduction to Artificial Intelligence
aliakbars
2
380
Feature Selection & Extraction
aliakbars
0
170
Introduction to Natural Language Processing
aliakbars
0
75
Machine Learning for Healthcare
aliakbars
0
67
Pemanfaatan Big Data dalam Ekonomi Indonesia Berbasis Digital
aliakbars
0
110
How Technology Can Change Food Logistics
aliakbars
0
130
Data Science for Business
aliakbars
2
140
Other Decks in Education
See All in Education
ROSConJP 2025 発表スライド
f0reacharr
0
260
生態系ウォーズ - ルールブック
yui_itoshima
1
350
中央教育審議会 教育課程企画特別部会 情報・技術ワーキンググループに向けた提言 ー次期学習指導要領での情報活用能力の抜本的向上に向けてー
codeforeveryone
0
400
Master of Applied Science & Engineering: Computer Science & Master of Science in Applied Informatics: Artificial Intelligence and Data Science
signer
PRO
0
850
Adobe Express
matleenalaakso
1
8k
Human Perception and Cognition - Lecture 4 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
1.2k
GOVERNOR ADDRESS:2025年9月29日合同公式訪問例会:2720 Japan O.K. ロータリーEクラブ、2025年10月6日卓話:藤田 千克由 氏(国際ロータリー第2720地区 2025-2026年度 ガバナー・大分中央ロータリークラブ・大分トキハタクシー(株)顧問)
2720japanoke
0
700
ThingLink
matleenalaakso
28
4.2k
Linguaxes de programación
irocho
0
450
データで見る赤ちゃんの成長
syuchimu
0
350
附属科学技術高等学校の概要|Science Tokyo(東京科学大学)
sciencetokyo
PRO
0
2.2k
3Dプリンタでロボット作るよ#5_ロボット向け3Dプリンタ材料
shiba_8ro
0
120
Featured
See All Featured
What's in a price? How to price your products and services
michaelherold
246
12k
Speed Design
sergeychernyshev
32
1.2k
For a Future-Friendly Web
brad_frost
180
10k
The Cult of Friendly URLs
andyhume
79
6.7k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.1k
Designing Experiences People Love
moore
142
24k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
Raft: Consensus for Rubyists
vanstee
140
7.2k
Building Adaptive Systems
keathley
44
2.8k
Site-Speed That Sticks
csswizardry
13
970
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.2k
Why You Should Never Use an ORM
jnunemaker
PRO
60
9.6k
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