blob: a98621d0fab34827504715c3713492f4acd1838b (
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
39
40
41
42
43
44
45
46
|
-- The following methods must be implemented to let a layer work properly
local Param = nerv.class('nerv.Param')
function nerv.Param:__init(id, global_conf)
self.id = id
self.gconf = global_conf
end
function nerv.Param:get_info()
return self.info
end
function nerv.Param:set_info(info)
self.info = info
end
function nerv.Param:read(pfhandle)
nerv.error_method_not_implemented()
end
function nerv.Param:write(pfhandle)
nerv.error_method_not_implemented()
end
local Layer = nerv.class('nerv.Layer')
function nerv.Layer:__init(id, global_conf, ...)
nerv.error_method_not_implemented()
end
function nerv.Layer:init(id)
nerv.error_method_not_implemented()
end
function nerv.Layer:update(bp_err, input, output)
nerv.error_method_not_implemented()
end
function nerv.Layer:propagate(input, output)
nerv.error_method_not_implemented()
end
function nerv.Layer:back_propagate(next_bp_err, bp_err, input, output)
nerv.error_method_not_implemented()
end
|