This commit is contained in:
Mike J Innes 2017-02-20 21:50:01 +00:00
parent b92252cd5c
commit 3fdffea37d

View File

@ -1,7 +1,7 @@
export Conv2D, MaxPool, Reshape
type Conv2D <: Model
filter::Param{Array{Float32,4}} # [height, width, inchans, outchans]
filter::Param{Array{Float64,4}} # [height, width, inchans, outchans]
stride::Dims{2}
end