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
72
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
55
ML Session n°8
acq
0
54
ML Session n°7
acq
0
18
ML Session n°6
acq
0
26
ML Session n°5
acq
0
48
ML Session n°4
acq
0
26
ML Session n°2
acq
1
64
ML Session n°1
acq
0
62
Intro to Machine Learning for Android developers
acq
0
180
Other Decks in Technology
See All in Technology
SDカードフォレンジック
su3158
1
660
白金鉱業Meetup_Vol.18_生成AIはデータサイエンティストを代替するのか?
brainpadpr
3
200
Winning at PHP in Production in 2025
beberlei
1
230
AWS全冠芸人が見た世界 ~資格取得より大切なこと~
masakiokuda
5
6.5k
AI 코딩 에이전트 더 똑똑하게 쓰기
nacyot
0
370
テストって楽しい!開発を加速させるテストの魅力 / Testing is Fun! The Fascinating of Testing to Accelerate Development
aiandrox
0
140
30代からでも遅くない! 内製開発の世界に飛び込み、最前線で戦うLLMアプリ開発エンジニアになろう
minorun365
PRO
16
4.8k
白金鉱業Meetup_Vol.18_AIエージェント時代のUI/UX設計
brainpadpr
1
250
営業向け誰でも話せるOCIセールストーク
oracle4engineer
PRO
2
130
Cross Data Platforms Meetup LT 20250422
tarotaro0129
1
840
SREからゼロイチプロダクト開発へ ー越境する打席の立ち方と期待への応え方ー / Product Engineering Night #8
itkq
2
1.1k
ガバクラのAWS長期継続割引 ~次の4/1に慌てないために~
hamijay_cloud
1
540
Featured
See All Featured
Designing Experiences People Love
moore
142
24k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
34
2.2k
KATA
mclloyd
29
14k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
10
770
Product Roadmaps are Hard
iamctodd
PRO
52
11k
Writing Fast Ruby
sferik
628
61k
Fontdeck: Realign not Redesign
paulrobertlloyd
84
5.5k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
The Cult of Friendly URLs
andyhume
78
6.3k
Speed Design
sergeychernyshev
29
910
YesSQL, Process and Tooling at Scale
rocio
172
14k
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