Skip to content

Commit

Permalink
chore: apply formatting suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
avik-pal and github-actions[bot] authored Sep 10, 2024
1 parent 0b6c98f commit 9dc3c2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/src/tutorials/basic_mnist_deq.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ function construct_model(solver; model_type::Symbol=:deq)
deq_model = Chain(
Parallel(+,
Conv((3, 3), 64 => 64, tanh; stride=1, pad=SamePad(),
init_weight=truncated_normal(std=0.01), use_bias=false),
init_weight=truncated_normal(; std=0.01), use_bias=false),
Conv((3, 3), 64 => 64, tanh; stride=1, pad=SamePad(),
init_weight=truncated_normal(std=0.01), use_bias=false)),
init_weight=truncated_normal(; std=0.01), use_bias=false)),
Conv((3, 3), 64 => 64, tanh; stride=1, pad=SamePad(),
init_weight=truncated_normal(std=0.01), use_bias=false))
init_weight=truncated_normal(; std=0.01), use_bias=false))
if model_type === :skipdeq
init = Conv((3, 3), 64 => 64, gelu; stride=1, pad=SamePad())
Expand Down

0 comments on commit 9dc3c2f

Please sign in to comment.