Skip to content

Commit

Permalink
Fix mx missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
astonzhang committed Feb 9, 2023
1 parent d2ab1eb commit 046e7d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ so that [**the output tensor also has the same shape after the addition operatio
add_norm = AddNorm(0.5)
add_norm.initialize()
shape = (2, 3, 4)
d2l.check_shape(add_norm(d2l.ones(shape), d2l.ones(shape), shape)
d2l.check_shape(add_norm(d2l.ones(shape), d2l.ones(shape)), shape)
```

```{.python .input}
Expand Down

0 comments on commit 046e7d7

Please sign in to comment.