Flux.jl/src/layers/conv.jl

21 lines
542 B
Julia
Raw Normal View History

2017-12-15 13:22:57 +00:00
struct Conv2D{F,A}
σ::F
weight::A
stride::Int
end
Conv2D(k::NTuple{2,Integer}, ch::Pair{<:Integer,<:Integer}, σ = identity;
init = initn, stride = 1) =
Conv2D(σ, param(initn(k..., ch...)), stride)
Flux.treelike(Conv2D)
2017-12-15 16:24:45 +00:00
(c::Conv2D)(x) = c.σ.(conv2d(x, c.weight, stride = c.stride))
function Base.show(io::IO, l::Conv2D)
print(io, "Conv2D((", size(l.weight, 1), ", ", size(l.weight, 2), ")")
print(io, ", ", size(l.weight, 3), "=>", size(l.weight, 4))
l.σ == identity || print(io, ", ", l.σ)
print(io, ")")
end