From 3fdffea37d34a93ec5a100e6076acec975a70068 Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Mon, 20 Feb 2017 21:50:01 +0000 Subject: [PATCH] fix --- src/layers/shims.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/shims.jl b/src/layers/shims.jl index 8ffc4e1b..bad409b9 100644 --- a/src/layers/shims.jl +++ b/src/layers/shims.jl @@ -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