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
65
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
54
ML Session n°8
acq
0
53
ML Session n°7
acq
0
17
ML Session n°6
acq
0
25
ML Session n°5
acq
0
46
ML Session n°4
acq
0
25
ML Session n°2
acq
1
58
ML Session n°1
acq
0
53
Intro to Machine Learning for Android developers
acq
0
180
Other Decks in Technology
See All in Technology
OpenID Connect for Identity Assurance の概要と翻訳版のご紹介 / 20250219-BizDay17-OIDC4IDA-Intro
oidfj
0
160
Postmanを使いこなす!2025年ぜひとも押さえておきたいPostmanの10の機能
nagix
2
140
Larkご案内資料
customercloud
PRO
0
650
エンジニアの育成を支える爆速フィードバック文化
sansantech
PRO
3
990
自動テストの世界に、この5年間で起きたこと
autifyhq
10
8.1k
Googleマップ/Earthが一般化した 地図タイルのイマ
mapconcierge4agu
1
200
RSNA2024振り返り
nanachi
0
530
ハッキングの世界に迫る~攻撃者の思考で考えるセキュリティ~
nomizone
13
5k
PL900試験から学ぶ Power Platform 基礎知識講座
kumikeyy
0
120
開発組織のための セキュアコーディング研修の始め方
flatt_security
3
1.4k
2.5Dモデルのすべて
yu4u
2
790
プロセス改善による品質向上事例
tomasagi
2
2.2k
Featured
See All Featured
Code Review Best Practice
trishagee
66
17k
Rails Girls Zürich Keynote
gr2m
94
13k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
3
320
Understanding Cognitive Biases in Performance Measurement
bluesmoon
27
1.5k
Site-Speed That Sticks
csswizardry
3
370
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
129
19k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.2k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
10
1.3k
VelocityConf: Rendering Performance Case Studies
addyosmani
328
24k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
114
50k
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