Flux.jl/src/layers/affine.jl
Mike J Innes c4d815b5fc move todo
2017-03-09 00:12:49 +00:00

11 lines
148 B
Julia

export Affine
@net type Affine
W
b
x -> x*W + b
end
Affine(in::Integer, out::Integer; init = initn) =
Affine(init(in, out), init(1, out))