We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 435d1ce commit 92fbf7dCopy full SHA for 92fbf7d
test/runtests.jl
@@ -14,7 +14,7 @@ dk_twos = gen_linear_data_2outputs()
14
15
@testset "LinearHM" begin
16
# test model instantiation
17
- NN = Lux.Chain(Dense(2, 5), Dense(5, 1))
+ NN = Lux.Chain(Lux.Dense(2, 5), Lux.Dense(5, 1))
18
lhm = LinearHM(NN, (:x2, :x3), (:x1,), 1.5f0)
19
@test lhm.forcing == [:x1]
20
@test lhm.β == [1.5f0]
0 commit comments