aboutsummaryrefslogtreecommitdiff
path: root/nerv/layer/relu.lua
blob: b7951e762e50ea90a94778b066caeebf483b06ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
local ReluLayer = nerv.class('nerv.ReluLayer', 'nerv.Layer')

function ReluLayer:__init(id, global_conf, layer_conf)
    nerv.Layer.__init(self, id, global_conf, layer_conf)
    self:check_dim_len(1, 1)
end

function ReluLayer:bind_params()
end

function ReluLayer:init()
    if self.dim_in[1] ~= self.dim_out[1] then
        nerv.error('mismatching dimensions of input and output')
    end
end

function ReluLayer:batch_resize(batch_size)
end

function ReluLayer:update()
end

function ReluLayer:propagate(input, output)
    output[1]:relu(input[1])
end

function ReluLayer:back_propagate(bp_err, next_bp_err, input, output)
    next_bp_err[1]:relu_grad(bp_err[1], output[1])
end

function ReluLayer:get_params()
    return nerv.ParamRepo({}, self.loc_type)
end