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
92
UKARA 1.0 Challenge Track 1
aliakbars
1
81
Introduction to Artificial Intelligence
aliakbars
2
340
Feature Selection & Extraction
aliakbars
0
130
Introduction to Natural Language Processing
aliakbars
0
63
Machine Learning for Healthcare
aliakbars
0
59
Pemanfaatan Big Data dalam Ekonomi Indonesia Berbasis Digital
aliakbars
0
81
How Technology Can Change Food Logistics
aliakbars
0
89
Data Science for Business
aliakbars
2
120
Other Decks in Education
See All in Education
2025年度春学期 統計学 第1回 イントロダクション (2025. 4. 10)
akiraasano
PRO
0
110
Analysis and Validation - Lecture 4 - Information Visualisation (4019538FNR)
signer
PRO
0
2k
統計学に必要な数学(線形代数含む)
kosugitti
0
360
Prógram La Liberazione
olafurtr90
0
180
Are puppies a ranking factor?
jonoalderson
0
240
zupanijska natjecanja
petarradanovic2
0
330
Ilman kirjautumista toimivia sovelluksia
matleenalaakso
1
20k
OpenAI Education Forum 資料「教育と生成AI ~事例から見えるこれからの活用~」
luiyoshida
1
640
A Chatbot is Not a Search Engine (it's more like a roleplaying game)
dsalo
0
240
FinOpsスキルの効率的な上げ方 #ochacafe
chacco38
1
130
OpenRobomaster 中国のロボットコンテスト 日本連携の可能性
takasumasakazu
0
380
SkimaTalk Tutorial for Corporate Customers
skimatalk
0
240
Featured
See All Featured
Automating Front-end Workflow
addyosmani
1369
200k
Build your cross-platform service in a week with App Engine
jlugia
229
18k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
30
2.3k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
160
15k
Docker and Python
trallard
44
3.3k
The Cult of Friendly URLs
andyhume
78
6.3k
Raft: Consensus for Rubyists
vanstee
137
6.9k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.6k
Git: the NoSQL Database
bkeepers
PRO
430
65k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
13
680
The Cost Of JavaScript in 2023
addyosmani
49
7.7k
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