Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ReLU.lua - github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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