Skip to content

Commit ab79676

Browse files
committed
chore: formatting suggestions
1 parent 46fc861 commit ab79676

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: docs/src/tutorials/basic_mnist_deq.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@ function construct_model(solver; model_type::Symbol=:deq)
5555
deq_model = Chain(
5656
Parallel(+,
5757
Conv((3, 3), 64 => 64, tanh; stride=1, pad=SamePad(),
58-
init_weight=truncated_normal(std=0.01), use_bias=false),
58+
init_weight=truncated_normal(; std=0.01), use_bias=false),
5959
Conv((3, 3), 64 => 64, tanh; stride=1, pad=SamePad(),
60-
init_weight=truncated_normal(std=0.01), use_bias=false)),
60+
init_weight=truncated_normal(; std=0.01), use_bias=false)),
6161
Conv((3, 3), 64 => 64, tanh; stride=1, pad=SamePad(),
62-
init_weight=truncated_normal(std=0.01), use_bias=false))
62+
init_weight=truncated_normal(; std=0.01), use_bias=false))
6363
6464
if model_type === :skipdeq
6565
init = Conv((3, 3), 64 => 64, gelu; stride=1, pad=SamePad())

0 commit comments

Comments
 (0)