iT邦幫忙

第 12 屆 iThome 鐵人賽

DAY 14
1
AI & Data

30天只學U-net系列 第 14

[day-14] U-net Network Architecture

  • 分享至 

  • xImage
  •  

前言

進入架構的說明,建議與
[day-08] 番外 - U-net的程式碼實現 (1) - Conv2D
[day-09] 番外 - U-net的程式碼實現 (2) - pooling
一起食用。

架構

https://ithelp.ithome.com.tw/upload/images/20200920/20112571sVJYDmgyLi.png

The network architecture is illustrated in Figure 1. It consists of a contracting path (left side) and an expansive path (right side).

首先介紹左邊的架構。

The contracting path follows the typical architecture of a convolutional network. It consists of the repeated application of two 3x3 convolutions (unpadded convolutions), each followed by a rectified linear unit (ReLU) and a 2x2 max pooling operation with stride 2 for downsampling. At each downsampling step we double the number of feature channels.

  1. 3X3 架構的convolution *2
  2. relu 激活函數
  3. pooling * 1

Every step in the expansive path consists of an upsampling of the feature map followed by a 2x2 convolution ("up-convolution") that halves the number of feature channels, a concatenation with the correspondingly cropped feature map from the contracting path, and two 3x3 convolutions, each followed by a ReLU.

右邊的架構

  1. 通道數減半的向上convolution (取代pooling)
  2. convolution 同左邊架構

The cropping is necessary due to the loss of border pixels in every convolution. At the final layer a 1x1 convolution is used to map each 64-component feature vector to the desired number of classes. In total the network has 23 convolutional layers. To allow a seamless tiling of the output segmentation map (see Figure 2), it is important to select the input tile size such that all 2x2 max-pooling operations are applied to a layer with an even x- and y-size.

  1. 每次都會丟失邊界,所以要將影像再還原回去

結語

我印象種後續還有出一些改良型的U-net,後續有空再介紹,明天繼續說明U-net實作。

參考文獻

[0] U-net


上一篇
[day-13] 第7段 introduction - 結語
下一篇
[day-15] 番外 - U-net的程式碼實現 (3) - dropout?(上)
系列文
30天只學U-net30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言