From 0fbc8dff617d0442c4f6c1df395a4b10de395226 Mon Sep 17 00:00:00 2001 From: Mike J Innes Date: Wed, 18 Oct 2017 12:48:58 +0100 Subject: [PATCH] typoe --- src/layers/basic.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layers/basic.jl b/src/layers/basic.jl index 26b2daaf..f7c5a1bc 100644 --- a/src/layers/basic.jl +++ b/src/layers/basic.jl @@ -43,7 +43,7 @@ Creates a traditional `Dense` layer with parameters `W` and `b`. y = σ.(W * x .+ b) The input `x` must be a vector of length `in`, or a batch of vectors represented -as an `in × N` matrix. The out `y` will be a vector or batch of length `in`. +as an `in × N` matrix. The out `y` will be a vector or batch of length `out`. julia> d = Dense(5, 2) Dense(5, 2)