Last active
October 25, 2015 12:46
-
-
Save nagadomi/84878d53742b8ef8ba32 to your computer and use it in GitHub Desktop.
LeakyReLU
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
--- mynn.lua | |
mynn = {} -- Define your own namespace. | |
--- LeakyReLU.lua | |
-- Define LeakyReLU module under your own namespace. | |
local LeakyReLU, parent = torch.class('mynn.LeakyReLU','nn.Module') | |
function LeakyReLU:__init(negative_scale) | |
parent.__init(self) -- Call the super class constructor | |
self.negative_scale = negative_scale or 0.333 | |
self.negative = torch.Tensor() | |
end | |
function LeakyReLU:updateOutput(input) | |
self.output:resizeAs(input):copy(input):abs():add(input):div(2) | |
self.negative:resizeAs(input):copy(input):abs():add(-1.0, input):mul(-0.5*self.negative_scale) | |
self.output:add(self.negative) | |
return self.output | |
end | |
function LeakyReLU:updateGradInput(input, gradOutput) | |
self.gradInput:resizeAs(gradOutput) | |
self.negative:sign():add(1) | |
torch.cmul(self.gradInput, gradOutput, self.negative) | |
self.negative:add(-1):mul(-1 * self.negative_scale):cmul(gradOutput) | |
self.gradInput:add(self.negative) | |
return self.gradInput | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment