aboutsummaryrefslogtreecommitdiff
path: root/nerv/layer/duplicate.lua
blob: 2621cdf9b44ce87a29912981cbcb5df9558d92f1 (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
34
35
36
37
38
local DuplicateLayer = nerv.class('nerv.DuplicateLayer', 'nerv.Layer')

function DuplicateLayer:__init(id, global_conf, layer_conf)
    nerv.Layer.__init(self, id, global_conf, layer_conf)
    self:check_dim_len(1, -1)
    if #self.dim_out < 1 then
        nerv.error('no output specified')
    end
    for i = 1, #self.dim_out do
        if self.dim_out[i] ~= self.dim_in[1] then
            nerv.error('mismatching dimensions of outputs')
        end
    end
end

function DuplicateLayer:init()
end

function DuplicateLayer:batch_resize()
end

function DuplicateLayer:propagate(input, output)
    -- do nothing, use reference copy in nn/network.lua
end

function DuplicateLayer:back_propagate(bp_err, next_bp_err)
    next_bp_err[1]:copy_from(bp_err[1])
    for i = 2, #self.dim_out do
        next_bp_err[1]:add(next_bp_err[1], bp_err[i], 1.0, 1.0)
    end
end

function DuplicateLayer:update()
end

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