Skip to content
This repository was archived by the owner on May 6, 2021. It is now read-only.

Commit 6bd18ef

Browse files
Format .jl files (#121)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 182a22c commit 6bd18ef

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/experiments/rl_envs.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1042,11 +1042,11 @@ function RLCore.Experiment(
10421042
actor = Chain(
10431043
Dense(ns, 256, relu; initW = glorot_uniform(rng)),
10441044
Dense(256, na; initW = glorot_uniform(rng)),
1045-
),
1045+
),
10461046
critic = Chain(
10471047
Dense(ns, 256, relu; initW = glorot_uniform(rng)),
10481048
Dense(256, 1; initW = glorot_uniform(rng)),
1049-
),
1049+
),
10501050
optimizer = ADAM(1e-3),
10511051
) |> cpu,
10521052
γ = 0.99f0,
@@ -1327,12 +1327,12 @@ function RLCore.Experiment(
13271327
),
13281328
μ = Chain(Dense(64, 1, tanh; initW = glorot_uniform(rng)), vec),
13291329
σ = Chain(Dense(64, 1; initW = glorot_uniform(rng)), vec),
1330-
),
1330+
),
13311331
critic = Chain(
13321332
Dense(ns, 64, relu; initW = glorot_uniform(rng)),
13331333
Dense(64, 64, relu; initW = glorot_uniform(rng)),
13341334
Dense(64, 1; initW = glorot_uniform(rng)),
1335-
),
1335+
),
13361336
optimizer = ADAM(3e-4),
13371337
) |> cpu,
13381338
γ = 0.99f0,

0 commit comments

Comments
 (0)