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
87
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
82
ML Session n°8
acq
0
58
ML Session n°7
acq
0
21
ML Session n°6
acq
0
29
ML Session n°5
acq
0
51
ML Session n°4
acq
0
29
ML Session n°2
acq
1
79
ML Session n°1
acq
0
77
Intro to Machine Learning for Android developers
acq
0
190
Other Decks in Technology
See All in Technology
datadog-incident-management-intro
tetsuya28
0
120
GCASアップデート(202508-202510)
techniczna
0
340
CloudComposerによる大規模ETL 「制御と実行の分離」の実践
leveragestech
0
180
GPUをつかってベクトル検索を扱う手法のお話し~NVIDIA cuVSとCAGRA~
fshuhe
0
380
SOTA競争から人間を超える画像認識へ
shinya7y
0
690
20251029_Cursor Meetup Tokyo #02_MK_「あなたのAI、私のシェル」 - プロンプトインジェクションによるエージェントのハイジャック
mk0721
PRO
6
2.4k
書籍『実践 Apache Iceberg』の歩き方
ishikawa_satoru
0
470
[AWS 秋のオブザーバビリティ祭り 2025 〜最新アップデートと生成 AI × オブザーバビリティ〜] Amazon Bedrock AgentCore で実現!お手軽 AI エージェントオブザーバビリティ
0nihajim
1
350
サブドメインテイクオーバー事例紹介と対策について
mikit
15
7.3k
Playwrightで始めるUI自動テスト入門
devops_vtj
0
140
AIで急増した生産「量」の荒波をCodeRabbitで乗りこなそう
moongift
PRO
0
480
OpenCensusと歩んだ7年間
bgpat
0
330
Featured
See All Featured
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
2.9k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
9
950
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
54k
GitHub's CSS Performance
jonrohan
1032
470k
Raft: Consensus for Rubyists
vanstee
140
7.2k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.8k
Stop Working from a Prison Cell
hatefulcrawdad
272
21k
Designing Experiences People Love
moore
142
24k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.2k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
4.1k
GraphQLとの向き合い方2022年版
quramy
49
14k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
36
6.1k
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