This commit is contained in:
Mike J Innes 2017-10-18 12:48:58 +01:00
parent d6dd27dae5
commit 0fbc8dff61

View File

@ -43,7 +43,7 @@ Creates a traditional `Dense` layer with parameters `W` and `b`.
y = σ.(W * x .+ b) y = σ.(W * x .+ b)
The input `x` must be a vector of length `in`, or a batch of vectors represented 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) julia> d = Dense(5, 2)
Dense(5, 2) Dense(5, 2)