iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 28
0
自我挑戰組

Machine Learning 學習筆記系列 第 28

[第28天] 卷積神經網絡 MINST練習(3)

  • 分享至 

  • xImage
  •  

參考網站1

ReLu

用ReLu這個激活函數把負數的都變為0 (對filter沒有什麼作用的區域不繼續干擾後續)(紅色 > 0)
https://ithelp.ithome.com.tw/upload/images/20181111/20112303H2bhQ8jZCp.jpghttps://ithelp.ithome.com.tw/upload/images/20181111/20112303LFoINHuzYa.png

MaxPooling

接下來學習一下 max pooling用法

def max_pool_2x2(x):
    return tf.nn.max_pool(x, ksize=[1,2,2,1], strides=[1,2,2,1], padding = 'SAME')

size由2x2矩陣組成,這邊strides=2 所以一次移動2格再取最大值留下
https://i.imgur.com/MxuEsSo.gif

MaxPooling結果
https://ithelp.ithome.com.tw/upload/images/20181111/201123033fZdRv6lB2.png

這樣就把圖片縮小1/4了到這邊第一層卷積層結束,明天再來了解第二卷積層跟最後幾層~/images/emoticon/emoticon06.gif


上一篇
[第27天] 卷積神經網絡 MNIST練習(2)
下一篇
[第29天] 卷積神經網絡 MNIST練習(4)
系列文
Machine Learning 學習筆記30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言