Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillZubov committed Mar 20, 2024
1 parent cefb901 commit 10169cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/PINO_ode_tests_gpu.jl
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ end
# σ = gelu)
# flat_no = Lux.transform(flat_no)
inner = 50
chain = Lux.Chain(Lux.Dense(2, inner, Lux.σ),
chain = Lux.Chain(Lux.Dense(5, inner, Lux.σ),
Lux.Dense(inner, inner, Lux.σ),
Lux.Dense(inner, inner, Lux.σ),
Lux.Dense(inner, inner, Lux.σ),
Lux.Dense(inner, inner, Lux.σ),
Lux.Dense(inner, 1))
Lux.Dense(inner, 2))
ps = Lux.setup(Random.default_rng(), chain)[1] |> ComponentArray |> gpud

opt = OptimizationOptimisers.Adam(0.001)
Expand Down

0 comments on commit 10169cb

Please sign in to comment.