From 7aa6854c64b9dbaea0832bf6d2ea72b555e17f69 Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Fri, 16 Feb 2018 00:06:15 +0000 Subject: [PATCH] more correct --- src/layers/conv.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/conv.jl b/src/layers/conv.jl index c94b642b..4578b75b 100644 --- a/src/layers/conv.jl +++ b/src/layers/conv.jl @@ -5,7 +5,7 @@ Standard convolutional layer. `size` should be a tuple like `(2, 2)`. `in` and `out` specify the number of input and output channels respectively. -Data should be stored in HWCN order. In other words, a 100×100 RGB image would +Data should be stored in WHCN order. In other words, a 100×100 RGB image would be a `100×100×3` array, and a batch of 50 would be a `100×100×3×50` array. Takes the keyword arguments `pad` and `stride`.