Last active
September 11, 2017 08:32
-
-
Save szagoruyko/88325ec8f8f5c67e863e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nn' | |
local vgg = nn.Sequential() | |
-- building block | |
local function ConvBNReLU(nInputPlane, nOutputPlane) | |
vgg:add(nn.SpatialConvolution(nInputPlane, nOutputPlane, 3,3, 1,1, 1,1)) | |
vgg:add(nn.SpatialBatchNormalization(nOutputPlane,1e-3)) | |
vgg:add(nn.ReLU(true)) | |
return vgg | |
end | |
-- Will use "ceil" MaxPooling because we want to save as much feature space as we can | |
local MaxPooling = nn.SpatialMaxPooling | |
ConvBNReLU(3,64):add(nn.Dropout(0.3)) | |
ConvBNReLU(64,64) | |
vgg:add(MaxPooling(2,2,2,2):ceil()) | |
ConvBNReLU(64,128):add(nn.Dropout(0.4)) | |
ConvBNReLU(128,128) | |
vgg:add(MaxPooling(2,2,2,2):ceil()) | |
ConvBNReLU(128,256):add(nn.Dropout(0.4)) | |
ConvBNReLU(256,256):add(nn.Dropout(0.4)) | |
ConvBNReLU(256,256) | |
vgg:add(MaxPooling(2,2,2,2):ceil()) | |
ConvBNReLU(256,512):add(nn.Dropout(0.4)) | |
ConvBNReLU(512,512):add(nn.Dropout(0.4)) | |
ConvBNReLU(512,512) | |
vgg:add(MaxPooling(2,2,2,2):ceil()) | |
ConvBNReLU(512,512):add(nn.Dropout(0.4)) | |
ConvBNReLU(512,512):add(nn.Dropout(0.4)) | |
ConvBNReLU(512,512) | |
vgg:add(MaxPooling(2,2,2,2):ceil()) | |
vgg:add(nn.View(512)) | |
vgg:add(nn.Dropout(0.5)) | |
vgg:add(nn.Linear(512,512)) | |
vgg:add(nn.BatchNormalization(512)) | |
vgg:add(nn.ReLU(true)) | |
vgg:add(nn.Dropout(0.5)) | |
vgg:add(nn.Linear(512,10)) | |
-- initialization from MSR | |
local function MSRinit(net) | |
local function init(name) | |
for k,v in pairs(net:findModules(name)) do | |
local n = v.kW*v.kH*v.nOutputPlane | |
v.weight:normal(0,math.sqrt(2/n)) | |
v.bias:zero() | |
end | |
end | |
init'nn.SpatialConvolution' | |
end | |
MSRinit(vgg) | |
return vgg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment