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
ML Session n°3
Search
Adrien Couque
March 08, 2017
Technology
0
78
ML Session n°3
Adrien Couque
March 08, 2017
Tweet
Share
More Decks by Adrien Couque
See All by Adrien Couque
A roadmap to psychohistory
acq
0
60
ML Session n°8
acq
0
54
ML Session n°7
acq
0
20
ML Session n°6
acq
0
26
ML Session n°5
acq
0
49
ML Session n°4
acq
0
27
ML Session n°2
acq
1
69
ML Session n°1
acq
0
68
Intro to Machine Learning for Android developers
acq
0
190
Other Decks in Technology
See All in Technology
「クラウドコスト絶対削減」を支える技術—FinOpsを超えた徹底的なクラウドコスト削減の実践論
delta_tech
4
120
使いたいMCPサーバーはWeb APIをラップして自分で作る #QiitaBash
bengo4com
0
1.5k
事業成長の裏側:エンジニア組織と開発生産性の進化 / 20250703 Rinto Ikenoue
shift_evolve
PRO
2
16k
asken AI勉強会(Android)
tadashi_sato
0
170
KubeCon + CloudNativeCon Japan 2025 Recap by CA
ponkio_o
PRO
0
280
Lambda Web Adapterについて自分なりに理解してみた
smt7174
5
150
KubeCon + CloudNativeCon Japan 2025 に行ってきた! & containerd の新機能紹介
honahuku
0
120
Tech-Verse 2025 Keynote
lycorptech_jp
PRO
0
1.6k
高速なプロダクト開発を実現、創業期から掲げるエンタープライズアーキテクチャ
kawauso
2
7.1k
MobileActOsaka_250704.pdf
akaitadaaki
0
110
React開発にStorybookとCopilotを導入して、爆速でUIを編集・確認する方法
yu_kod
1
120
【5分でわかる】セーフィー エンジニア向け会社紹介
safie_recruit
0
26k
Featured
See All Featured
Rebuilding a faster, lazier Slack
samanthasiow
82
9.1k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
940
Become a Pro
speakerdeck
PRO
28
5.4k
GitHub's CSS Performance
jonrohan
1031
460k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.7k
Thoughts on Productivity
jonyablonski
69
4.7k
A designer walks into a library…
pauljervisheath
207
24k
How STYLIGHT went responsive
nonsquared
100
5.6k
Adopting Sorbet at Scale
ufuk
77
9.4k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
730
Transcript
ML: regression March 2017
Notations : Scalar (number) : Vector : Matrix : Transpose
of matrix X : Mean of vectors x : Estimate of vector value x
Simple linear regression
Solving simple linear regression Goal : find the best and
for Best ? Minimize the square residuals (least squares)
Solving simple linear regression: finding the best estimates for a
and b
Demo 1
Multivariate linear regression
Demo 2
Polynomial regression
Trick : still a linear regression ! Just create additional
columns, derived from pre-existing ones Then it comes back to a linear regression
Demo 3
Gradient descent
Gradient descent
Gradient descent
Normal equation vs gradient descent Normal equation Gradient descent No
additional parameters Need to choose a learning step No loop Needs to iterate : for inverse Slow if is large Works well when is large In practice : n < 10.000 ⇔ normal equation
Logistic regression Used for binary classification Decision boundary : 0.5
- y < 0.5 : class A - y >= 0.5 : class B
Logistic regression : cost function
Logistic regression : cost function
Demo 4: logistic regression + gradient descent
Questions? March 2017