We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b43831e commit 04815edCopy full SHA for 04815ed
1 file changed
src/core/icnf.jl
@@ -62,10 +62,7 @@ function ICNF(;
62
nvars::Int = 1,
63
naugmented::Int = nvars + 1,
64
nn::LuxCore.AbstractLuxLayer = Lux.Chain(
65
- Lux.Dense(
66
- (nvars + naugmented + !autonomous) => (nvars + naugmented + !autonomous),
67
- tanh,
68
- ),
+ Lux.Dense(nvars + naugmented + !autonomous => nvars + naugmented, tanh),
69
),
70
steer_rate::AbstractFloat = convert(data_type, 1.0e-1),
71
λ₁::AbstractFloat = convert(data_type, 1.0e-2),
0 commit comments