Skip to content

Commit 04815ed

Browse files
committed
fix
1 parent b43831e commit 04815ed

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/core/icnf.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,7 @@ function ICNF(;
6262
nvars::Int = 1,
6363
naugmented::Int = nvars + 1,
6464
nn::LuxCore.AbstractLuxLayer = Lux.Chain(
65-
Lux.Dense(
66-
(nvars + naugmented + !autonomous) => (nvars + naugmented + !autonomous),
67-
tanh,
68-
),
65+
Lux.Dense(nvars + naugmented + !autonomous => nvars + naugmented, tanh),
6966
),
7067
steer_rate::AbstractFloat = convert(data_type, 1.0e-1),
7168
λ₁::AbstractFloat = convert(data_type, 1.0e-2),

0 commit comments

Comments
 (0)