From c2008e2dd542899fcfc65e59187a61cb07397626 Mon Sep 17 00:00:00 2001 From: Troels Arnfred Bojesen Date: Mon, 11 Mar 2024 21:49:24 +0100 Subject: [PATCH] Fix `Dense` documentation Correct the documentation of the `Dense` constructor --- 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 2e16c825c..2a22444d8 100644 --- a/src/layers/basic.jl +++ b/src/layers/basic.jl @@ -138,7 +138,7 @@ end """ Dense(in_dims => out_dims, activation=identity; init_weight=glorot_uniform, - init_bias=zeros32, bias::Bool=true) + init_bias=zeros32, use_bias::Bool=true, allow_fast_activation::Bool=true) Create a traditional fully connected layer, whose forward pass is given by: `y = activation.(weight * x .+ bias)`