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
Residual Network.pdf
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Keio Computer Society
November 25, 2021
0
140
Residual Network.pdf
Keio Computer Society
November 25, 2021
Tweet
Share
More Decks by Keio Computer Society
See All by Keio Computer Society
20211208.pdf
kcs
0
15
自然言語処理~Primer
kcs
0
98
Graph Neural Network
kcs
0
29
Kaggle上位者解法紹介.pdf
kcs
0
46
Scaling Laws for NL Models
kcs
0
48
音声合成の精度比較.pdf
kcs
0
170
ブロックチェーンによる自律AIのための遺伝的アルゴリズムの検討
kcs
0
27
Featured
See All Featured
Large-scale JavaScript Application Architecture
addyosmani
515
110k
For a Future-Friendly Web
brad_frost
183
10k
Code Reviewing Like a Champion
maltzj
528
40k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.1k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
The World Runs on Bad Software
bkeepers
PRO
72
12k
How GitHub (no longer) Works
holman
316
140k
What the history of the web can teach us about the future of AI
inesmontani
PRO
1
450
Agile Actions for Facilitating Distributed Teams - ADO2019
mkilby
0
140
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
133
19k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
Faster Mobile Websites
deanohume
310
31k
Transcript
Residual Network (ResNet)
• CNNとは • ResNetの構造、特徴 • まとめ • 参考文献 目次
CNNとは https://note.com/kawashimaken/n/nc27810b609da ・畳み込み層が用いられている ・画像認識に適している
ResNetとは プレーンネットの構造 ResNetの構造 https://deepage.net/deep_learning/2016/11/30/resnet.html ここで足し合わせる
プレーンネットとResNetの比較 プレーンネット ResNet 34層のほうが誤差率が低い 34層の誤差率が低くない https://arxiv.org/pdf/1512.03385.pdf
ResNetの層の数と誤差率 model top-1 エラー top-5 エラー plain 34層 28.54 9.33
ResNet 34層 25.03 7.76 ResNet 50層 22.85 6.71 ResNet 101層 21.75 6.05 ResNet 152層 21.43 5.71 ・ResNetは層をかなり深くしても 精度が上がっている
• ILSVRC2015にて1位を獲得(top5 エラー 3.57%) ResNetの活躍 https://axa.biopapyrus.jp/deep-learning/cnn/image-classification.html
ResNetの活躍 前年までの優勝モデルの層の数と比べるとResNetは圧倒的に多い https://deepage.net/deep_learning/2016/11/30/resnet.html
ResNetの層の数 誤差率(%) 20層 8.75 32層 7.51 44層 7.17 56層 6.97
110層 6.43 1202層 7.93 ResNetの層の数と精度 1202層では過学習を 起こしている https://arxiv.org/pdf/1512.03385.pdf データセット:CIFAR-10
• ResNetにはshortcut connectionsという構造がある • 単純に層を重ねた場合、深くしすぎると精度が落ちる • ResNetはかなり層を深くしても精度がよくなる • ILSVRC 2015で1位を獲得(誤差率
3.57%) まとめ
• https://arxiv.org/pdf/1512.03385.pdf • https://note.com/kawashimaken/n/nc27810b609da • https://deepage.net/deep_learning/2016/11/30/resnet.html • https://axa.biopapyrus.jp/deep-learning/cnn/image- classification.html 参考文献