summaryrefslogtreecommitdiffstats
path: root/contrib/lua-torch/nn/ReLU.lua
blob: a6eb271ee0838e54d9a36d70b7e0b0605603d796 (plain)
1
2
3
4
5
local ReLU, Parent = torch.class('nn.ReLU', 'nn.Threshold')

function ReLU:__init(p)
   Parent.__init(self,0,0,p)
end